@maptiler/sdk 3.11.1 → 4.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/maptiler-sdk.mjs +2390 -2375
- package/dist/maptiler-sdk.mjs.map +1 -1
- package/dist/src/Map.d.ts +0 -10
- package/dist/src/config.d.ts +2 -2
- package/dist/src/geocoding.d.ts +25 -0
- package/dist/src/index.d.ts +2 -1
- package/dist/src/tools.d.ts +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -325,7 +325,7 @@ map.setStyle("maptiler://c912ffc8-2360-487a-973b-59d037fb15b8");
|
|
|
325
325
|
|
|
326
326
|
The **Web Mercator projection** [_(Wikipedia)_](https://en.wikipedia.org/wiki/Web_Mercator_projection) has been the go-to standard in cartography since the early days or web mapping. Partly for technical reasons but also because it is great for navigation as well as for showing the entire world in one screen, with no hidden face. That being said, Mercator's heavy distorsion at high latitudes, as well a the discontinuity at the poles can be a limitation for data visualization and has been critisized for providing a biased view of the world.
|
|
327
327
|
|
|
328
|
-
The **globe projection**, available starting from MapTiler SDK v3, does not suffer from these biases and can feel overall more
|
|
328
|
+
The **globe projection**, available starting from MapTiler SDK v3, does not suffer from these biases and can feel overall more playful than Mercator. It can be a great choice for semi-global data visualization, especially for data close to the poles, thanks to its geographic continuity.
|
|
329
329
|
|
|
330
330
|
| Mercator projection | Globe projection |
|
|
331
331
|
| :----------------------------------------------: | :-------------------------------------------: |
|