gta-v-map 2.0.0

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.
Files changed (43) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +47 -0
  3. package/dist/components/gta-v-map.d.ts +126 -0
  4. package/dist/components/gta-v-map.d.ts.map +1 -0
  5. package/dist/components/gta-v-map.styles.d.ts +3 -0
  6. package/dist/components/gta-v-map.styles.d.ts.map +1 -0
  7. package/dist/components/index.d.ts +2 -0
  8. package/dist/components/index.d.ts.map +1 -0
  9. package/dist/constants/crs.constants.d.ts +9 -0
  10. package/dist/constants/crs.constants.d.ts.map +1 -0
  11. package/dist/constants/index.d.ts +5 -0
  12. package/dist/constants/index.d.ts.map +1 -0
  13. package/dist/constants/map.constants.d.ts +14 -0
  14. package/dist/constants/map.constants.d.ts.map +1 -0
  15. package/dist/constants/tile.constants.d.ts +8 -0
  16. package/dist/constants/tile.constants.d.ts.map +1 -0
  17. package/dist/constants/water.constants.d.ts +5 -0
  18. package/dist/constants/water.constants.d.ts.map +1 -0
  19. package/dist/gta-v-map.es.js +8544 -0
  20. package/dist/gta-v-map.umd.js +59 -0
  21. package/dist/index.d.ts +7 -0
  22. package/dist/index.d.ts.map +1 -0
  23. package/dist/types/event.types.d.ts +28 -0
  24. package/dist/types/event.types.d.ts.map +1 -0
  25. package/dist/types/index.d.ts +6 -0
  26. package/dist/types/index.d.ts.map +1 -0
  27. package/dist/types/map.types.d.ts +13 -0
  28. package/dist/types/map.types.d.ts.map +1 -0
  29. package/dist/types/marker.types.d.ts +27 -0
  30. package/dist/types/marker.types.d.ts.map +1 -0
  31. package/dist/types/shape.types.d.ts +44 -0
  32. package/dist/types/shape.types.d.ts.map +1 -0
  33. package/dist/utils/crs.utils.d.ts +8 -0
  34. package/dist/utils/crs.utils.d.ts.map +1 -0
  35. package/dist/utils/id.utils.d.ts +3 -0
  36. package/dist/utils/id.utils.d.ts.map +1 -0
  37. package/dist/utils/index.d.ts +5 -0
  38. package/dist/utils/index.d.ts.map +1 -0
  39. package/dist/utils/marker.utils.d.ts +25 -0
  40. package/dist/utils/marker.utils.d.ts.map +1 -0
  41. package/dist/utils/shape.utils.d.ts +35 -0
  42. package/dist/utils/shape.utils.d.ts.map +1 -0
  43. package/package.json +56 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021 Raul202
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # GTA V MAP LEAFLET
2
+ GTA V MAP LEAFLET is a MAP based on LEAFLET.
3
+
4
+ **[Documentation](https://docs.ricearaul.com/gta-v-map/)**
5
+
6
+ ## Features
7
+
8
+ * Easy to use
9
+ * Custom Icons
10
+ * 3 Map Style(Atlas,Satellite,Grid)
11
+
12
+ ## Dependencies
13
+ Map Styles
14
+ ```
15
+ https://mega.nz/file/UKo0wI4A#hDZV1RE-KU0rF2BePRjaKQfwWVBvWbsBVAFmM7yWvo8
16
+ ```
17
+ Leaflet
18
+ ```
19
+ https://leafletjs.com/
20
+ ```
21
+ ## Install
22
+ ```
23
+ Extract map styles in source folder
24
+ ```
25
+ ## How to use
26
+ Create blip
27
+ The coordinates are inverted X will be Y and Y will be X.
28
+ ```
29
+ var X = 0;
30
+ var Y = 0;
31
+ L.marker([Y,X], {icon: customIcon(1)}).addTo(Icons["Example"]).bindPopup("I am here.");
32
+ ```
33
+ How use CustomIcon
34
+ The parameter in the customIcon function is the name of the .png picture in the blips folder
35
+ ```
36
+ For /blips/1.png we will use customIcon(1)}
37
+ ```
38
+ ## Screenshots
39
+ | Atlas | Grid | Satellite |
40
+ | ------------- | ------------- | ----------------|
41
+ | !["Atlas Screenshot"](https://cdn.discordapp.com/attachments/691276350962794496/908677027530407966/unknown.png) | !["Grid Screebshot"](https://cdn.discordapp.com/attachments/691276350962794496/908677312109764608/unknown.png) | !["Satellite Screenshot"](https://cdn.discordapp.com/attachments/691276350962794496/908676688043454495/unknown.png) |
42
+
43
+ Custom blip
44
+ !["Customblip Screnshot"](https://cdn.discordapp.com/attachments/691276350962794496/908677500069109800/unknown.png)
45
+ ## License
46
+
47
+ GTA V MAP LEAFLET is licensed under MIT License.
@@ -0,0 +1,126 @@
1
+ import { LitElement, type PropertyValues } from 'lit';
2
+ import L from 'leaflet';
3
+ import 'leaflet.markercluster';
4
+ import 'leaflet.heat';
5
+ import type { GtaMarker, GtaMarkerEntry, GtaShape, GtaShapeEntry, MapStyle, LatLngBoundsTuple } from '../types/index.js';
6
+ /**
7
+ * `<gta-v-map>` -- a Lit web component that renders an interactive GTA V map
8
+ * using Leaflet with support for markers, shapes, heatmaps, and layer controls.
9
+ *
10
+ * @fires map-ready - Emitted once the Leaflet map is initialized.
11
+ * @fires map-click - Emitted when the map background is clicked.
12
+ * @fires marker-click - Emitted when a marker is clicked.
13
+ * @fires marker-placed - Emitted in place-mode when a position is selected.
14
+ */
15
+ export declare class GtaVMap extends LitElement {
16
+ static readonly styles: import("lit").CSSResult[];
17
+ /** URL to the Leaflet CSS stylesheet. Override to use a local copy. */
18
+ leafletCssUrl: string;
19
+ private _crs?;
20
+ /** Custom Leaflet CRS. When unset, the built-in GTA V CRS is used. */
21
+ get crs(): L.CRS | undefined;
22
+ set crs(value: L.CRS | undefined);
23
+ /** Base URL path for tile image folders. */
24
+ tileBaseUrl: string;
25
+ /** Override URL template for the satellite tile layer. */
26
+ satelliteUrl?: string;
27
+ /** Override URL template for the atlas tile layer. */
28
+ atlasUrl?: string;
29
+ /** Override URL template for the grid tile layer. */
30
+ gridUrl?: string;
31
+ /** Active map style (satellite, atlas, or grid). */
32
+ defaultStyle: MapStyle;
33
+ /** Current zoom level. */
34
+ zoom: number;
35
+ /** Minimum allowed zoom level. */
36
+ minZoom: number;
37
+ /** Maximum allowed zoom level. */
38
+ maxZoom: number;
39
+ /** Optional bounding box that restricts panning. Set to null to disable. */
40
+ maxBounds: LatLngBoundsTuple | null;
41
+ /** How strongly the map snaps back when dragged beyond max bounds (0..1). */
42
+ maxBoundsViscosity: number;
43
+ /** Base URL path for blip icon sprites (e.g. `blips/1.png`). */
44
+ blipsUrl: string;
45
+ /** When true, displays a Leaflet layer control for toggling base layers and overlays. */
46
+ showLayerControl: boolean;
47
+ /** When true, markers are added to plain layer groups instead of MarkerClusterGroups. */
48
+ disableClustering: boolean;
49
+ /** When true, clicking the map emits a `marker-placed` event with the clicked coordinates. */
50
+ placeMode: boolean;
51
+ /** Declarative list of markers. Changes trigger a full re-sync. */
52
+ markers: GtaMarker[];
53
+ /** Declarative list of shapes. Changes trigger a full re-sync. */
54
+ shapes: GtaShape[];
55
+ /** When true, renders a heatmap layer derived from all marker positions. */
56
+ showHeatmap: boolean;
57
+ private _map?;
58
+ private readonly _markerEntries;
59
+ private readonly _shapeEntries;
60
+ private readonly _overlayGroups;
61
+ private _tileLayers;
62
+ private _layerControl?;
63
+ private _heatLayer?;
64
+ /**
65
+ * Adds or updates a marker on the map.
66
+ * @param marker - Marker definition to add or update.
67
+ * @returns The marker's unique id.
68
+ */
69
+ addMarker(marker: GtaMarker): string;
70
+ /**
71
+ * Removes a marker by id.
72
+ * @param id - The marker's unique id.
73
+ * @returns `true` if the marker was found and removed.
74
+ */
75
+ removeMarker(id: string): boolean;
76
+ /** Returns a snapshot of all marker entries (without internal Leaflet references). */
77
+ getMarkers(): ReadonlyArray<Omit<GtaMarkerEntry, '_leaflet'>>;
78
+ /** Removes all markers from the map. */
79
+ clearMarkers(): void;
80
+ /**
81
+ * Adds or updates a shape on the map.
82
+ * @param shape - Shape definition to add or update.
83
+ * @returns The shape's unique id.
84
+ */
85
+ addShape(shape: GtaShape): string;
86
+ private _removeShapeFromGroup;
87
+ /**
88
+ * Removes a shape by id.
89
+ * @param id - The shape's unique id.
90
+ * @returns `true` if the shape was found and removed.
91
+ */
92
+ removeShape(id: string): boolean;
93
+ /** Returns a snapshot of all shape entries (without internal Leaflet references). */
94
+ getShapes(): ReadonlyArray<Omit<GtaShapeEntry, '_leaflet' | '_labelMarker'>>;
95
+ /** Removes all shapes from the map. */
96
+ clearShapes(): void;
97
+ render(): import("lit-html").TemplateResult<1>;
98
+ private _onCssLoad;
99
+ firstUpdated(): void;
100
+ private _initMap;
101
+ updated(changed: PropertyValues): void;
102
+ private _bindMapEvents;
103
+ private _getOrCreateOverlayGroup;
104
+ private _resolveTileUrl;
105
+ private _buildTileLayers;
106
+ private _switchTileLayer;
107
+ private _addLayerControl;
108
+ private _rebuildLayerControl;
109
+ private _toggleLayerControl;
110
+ private _createIcon;
111
+ private _addLeafletMarker;
112
+ private _syncMarkers;
113
+ private _addLeafletShape;
114
+ private _syncShapes;
115
+ private _getHeatmapData;
116
+ private _enableHeatmap;
117
+ private _disableHeatmap;
118
+ private _updateHeatmap;
119
+ private _dispatch;
120
+ }
121
+ declare global {
122
+ interface HTMLElementTagNameMap {
123
+ 'gta-v-map': GtaVMap;
124
+ }
125
+ }
126
+ //# sourceMappingURL=gta-v-map.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gta-v-map.d.ts","sourceRoot":"","sources":["../../src/components/gta-v-map.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ /** Scoped styles for the `<gta-v-map>` web component. */
2
+ export declare const gtaVMapStyles: import("lit").CSSResult;
3
+ //# sourceMappingURL=gta-v-map.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gta-v-map.styles.d.ts","sourceRoot":"","sources":["../../src/components/gta-v-map.styles.ts"],"names":[],"mappings":"AAEA,yDAAyD;AACzD,eAAO,MAAM,aAAa,yBAoBzB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export { GtaVMap } from './gta-v-map.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC"}
@@ -0,0 +1,9 @@
1
+ /** Transformation parameters for converting GTA V game coordinates to Leaflet CRS. */
2
+ export declare const GTA_CRS_CONFIG: {
3
+ readonly centerX: 117.3;
4
+ readonly centerY: 172.8;
5
+ readonly scaleX: 0.02072;
6
+ readonly scaleY: 0.0205;
7
+ readonly ln2: number;
8
+ };
9
+ //# sourceMappingURL=crs.constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"crs.constants.d.ts","sourceRoot":"","sources":["../../src/constants/crs.constants.ts"],"names":[],"mappings":"AAAA,sFAAsF;AACtF,eAAO,MAAM,cAAc;;;;;;CAMjB,CAAC"}
@@ -0,0 +1,5 @@
1
+ export { WATER_COLOR, WATER_TILE_DATA_URI } from './water.constants.js';
2
+ export { TILE_CONFIGS, STYLE_LABELS, MAP_STYLES } from './tile.constants.js';
3
+ export { GTA_CRS_CONFIG } from './crs.constants.js';
4
+ export { DEFAULT_MAP_CONFIG } from './map.constants.js';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AACxE,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC"}
@@ -0,0 +1,14 @@
1
+ import type { MapStyle, LatLngBoundsTuple } from '../types/index.js';
2
+ /** Default configuration values for the map component. */
3
+ export declare const DEFAULT_MAP_CONFIG: {
4
+ readonly zoom: 3;
5
+ readonly minZoom: 1;
6
+ readonly maxZoom: 5;
7
+ readonly center: [number, number];
8
+ readonly maxBounds: LatLngBoundsTuple;
9
+ readonly maxBoundsViscosity: 1;
10
+ readonly tileBaseUrl: "mapStyles";
11
+ readonly blipsUrl: "blips";
12
+ readonly defaultStyle: MapStyle;
13
+ };
14
+ //# sourceMappingURL=map.constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map.constants.d.ts","sourceRoot":"","sources":["../../src/constants/map.constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAErE,0DAA0D;AAC1D,eAAO,MAAM,kBAAkB;;;;qBAIX,CAAC,MAAM,EAAE,MAAM,CAAC;wBACW,iBAAiB;;;;2BAIjC,QAAQ;CAC7B,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { MapStyle, TileConfig } from '../types/index.js';
2
+ /** Zoom range, file extension, and folder name for each map style. */
3
+ export declare const TILE_CONFIGS: Record<MapStyle, Omit<TileConfig, 'url'>>;
4
+ /** Human-readable labels shown in the layer control for each style. */
5
+ export declare const STYLE_LABELS: Record<MapStyle, string>;
6
+ /** Ordered list of all available map styles. */
7
+ export declare const MAP_STYLES: readonly MapStyle[];
8
+ //# sourceMappingURL=tile.constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tile.constants.d.ts","sourceRoot":"","sources":["../../src/constants/tile.constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE9D,sEAAsE;AACtE,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,QAAQ,EAAE,IAAI,CAAC,UAAU,EAAE,KAAK,CAAC,CAIzD,CAAC;AAEX,uEAAuE;AACvE,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CAIxC,CAAC;AAEX,gDAAgD;AAChD,eAAO,MAAM,UAAU,EAAE,SAAS,QAAQ,EAA4C,CAAC"}
@@ -0,0 +1,5 @@
1
+ /** CSS color used for the ocean / map background. */
2
+ export declare const WATER_COLOR: "#1a3a4a";
3
+ /** 1x1 ocean-colored PNG as data URI for missing/error tiles */
4
+ export declare const WATER_TILE_DATA_URI = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAADElEQVR4nGOQsvICAAEQAJ+lYp46AAAAAElFTkSuQmCC";
5
+ //# sourceMappingURL=water.constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"water.constants.d.ts","sourceRoot":"","sources":["../../src/constants/water.constants.ts"],"names":[],"mappings":"AAAA,qDAAqD;AACrD,eAAO,MAAM,WAAW,EAAG,SAAkB,CAAC;AAE9C,gEAAgE;AAChE,eAAO,MAAM,mBAAmB,uHACsF,CAAC"}