-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathembed.ts
91 lines (80 loc) · 2.13 KB
/
embed.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/**
* @file Entry for embed.js
*/
import * as maplibregl from 'maplibre-gl';
import GeoloniaMap from './lib/geolonia-map';
import GeoloniaMarker from './lib/geolonia-marker';
import { SimpleStyle } from './lib/simplestyle';
import { VERSION as embedVersion } from './version';
import { registerPlugin, renderGeoloniaMap } from './lib/render';
export type { GeoloniaMapOptions } from './lib/geolonia-map';
export type Popup = maplibregl.Popup;
export type EmbedAttributes = {
lat: string;
lng: string;
zoom: string;
bearing: string;
pitch: string;
hash: string;
marker: string;
markerColor: string;
openPopup: string;
customMarker: string;
customMarkerOffset: string;
gestureHandling: string;
navigationControl: string;
geolocateControl: string;
fullscreenControl: string;
scaleControl: string;
geoloniaControl: string;
geojson: string;
cluster: string;
clusterColor: string;
style: string;
lang: string;
plugin: string;
key: string;
apiUrl: string;
loader: string;
minZoom: string;
maxZoom: string;
'3d': string;
[otherKey: string]: string;
};
export type EmbedPlugin<PluginAttributes extends { [otherKey: string]: string } = {}> = (map: GeoloniaMap, target: HTMLElement, atts: EmbedAttributes & PluginAttributes) => void;
// Type for `window.geolonia`
export type Geolonia = Partial<typeof maplibregl> & {
accessToken?: string;
embedVersion: string;
Map: typeof GeoloniaMap;
Marker: typeof GeoloniaMarker;
SimpleStyle: typeof SimpleStyle;
simpleStyle: typeof SimpleStyle; // backward compatibility
registerPlugin: (embedPlugin: EmbedPlugin) => void;
};
declare global {
interface Window {
geolonia: Geolonia,
maplibregl?: Geolonia,
mapboxgl?: Geolonia,
}
}
const geolonia: Geolonia = Object.assign(window.geolonia || {}, maplibregl, {
Map: GeoloniaMap,
Marker: GeoloniaMarker,
SimpleStyle: SimpleStyle,
simpleStyle: SimpleStyle,
embedVersion,
registerPlugin,
});
window.geolonia =
(window.maplibregl as any) =
window.mapboxgl = geolonia;
renderGeoloniaMap();
export {
geolonia,
GeoloniaMap as Map,
GeoloniaMarker as Marker,
SimpleStyle,
embedVersion,
};