terra-draw 0.0.1-alpha.64 → 0.0.1-alpha.65

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 CHANGED
@@ -16,7 +16,7 @@ Terra Draw uses the concept of 'adapters' to allow it to work with a host of dif
16
16
  - [Leaflet](https://leafletjs.com/) v1
17
17
  - [OpenLayers](https://openlayers.org/) v7
18
18
  - [Mapbox GL JS](https://www.mapbox.com/mapbox-gljs) v2
19
- - [MapLibre](https://maplibre.org/projects/maplibre-gl-js/) v2/v3
19
+ - [MapLibre](https://maplibre.org/maplibre-gl-js/docs/) v2/v3
20
20
  - [Google Maps JS API](https://developers.google.com/maps/documentation/javascript/overview) v3
21
21
  - [ArcGIS JavaScript SDK](https://developers.arcgis.com/javascript/latest/) v4 (MapView)
22
22
 
@@ -26,8 +26,8 @@ Please see the [the getting started guide](./guides/1.GETTING_STARTED.md) - this
26
26
 
27
27
  ### Development & Contributing
28
28
 
29
- * For development, please see the [the development documentation](./guides/6.DEVELOPMENT.md)
30
- * For guidance on contributing, please see the [the contributing documentation](./guides/CONTRIBUTING.md)
29
+ * For development, please see the [the development documentation](./guides/7.DEVELOPMENT.md)
30
+ * For guidance on contributing, please see the [the contributing documentation](./guides/7.DEVELOPMENT.md#contributing)
31
31
 
32
32
 
33
33
  ### Project Website
@@ -0,0 +1,5 @@
1
+ import { Feature, LineString, Polygon } from "geojson";
2
+ export declare function webMercatorCenter(feature: Feature<Polygon | LineString>): {
3
+ x: number;
4
+ y: number;
5
+ };