basemaps module¶
Module for basemaps.
Each basemap is defined as an item in the basemaps
dictionary.
For example, to access Google basemaps, users first need to get a Google Maps API key from https://bit.ly/3sw0THG.
Then, set the environment variable using geemap.set_api_key(
1 2 3 4 |
|
More WMS basemaps can be found at the following websites:
- USGS National Map: https://viewer.nationalmap.gov/services/
- MRLC NLCD Land Cover data: https://viewer.nationalmap.gov/services/
- FWS NWI Wetlands data: https://www.fws.gov/wetlands/Data/Web-Map-Services.html
get_xyz_dict(free_only=True, france=False)
¶
Returns a dictionary of xyz services.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
free_only
|
bool
|
Whether to return only free xyz tile services that do not require an access token. Defaults to True. |
True
|
france
|
bool
|
Whether to include Geoportail France basemaps. Defaults to False. |
False
|
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary of xyz services. |
Source code in leafmap/basemaps.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
|
qms_to_geemap(service_id)
¶
Convert a qms service to an ipyleaflet tile layer.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
service_id
|
str
|
Service ID. |
required |
Returns:
Type | Description |
---|---|
TileLayer
|
ipyleaflet.TileLayer: An ipyleaflet tile layer. |
Source code in leafmap/basemaps.py
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 |
|
search_qms(keywords, limit=10, timeout=600)
¶
Search qms files for keywords. Reference: https://github.com/geopandas/xyzservices/issues/65
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keywords
|
str
|
Keywords to search for. |
required |
limit
|
int
|
Number of results to return. |
10
|
Source code in leafmap/basemaps.py
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 |
|
xyz_to_bokeh()
¶
Convert xyz tile services to bokeh tile layers.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary of bokeh tile layers. |
Source code in leafmap/basemaps.py
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
|
xyz_to_folium()
¶
Convert xyz tile services to folium tile layers.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary of folium tile layers. |
Source code in leafmap/basemaps.py
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 |
|
xyz_to_leaflet()
¶
Convert xyz tile services to ipyleaflet tile layers.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary of ipyleaflet tile layers. |
Source code in leafmap/basemaps.py
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
|
xyz_to_plotly()
¶
Convert xyz tile services to plotly tile layers.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary of plotly tile layers. |
Source code in leafmap/basemaps.py
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 |
|
xyz_to_pydeck()
¶
Convert xyz tile services to pydeck custom tile layers.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary of pydeck tile layers. |
Source code in leafmap/basemaps.py
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
|