Last active
October 8, 2024 00:39
-
-
Save bozdoz/b3f35f8e4ca8bba0af92d58fe35048b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "Green Marker", | |
"iconUrl": "https://i.imgur.com/Q54ueuO.png" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
0.0, | |
0.0 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "Gold Marker - iconAnchor not correct", | |
"iconUrl": "https://i.imgur.com/Q54ueuO.png", | |
"iconAnchor": [12,-41] | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
0.2, | |
0.0 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "Green Marker - tooltipAnchor not correct", | |
"iconUrl": "https://i.imgur.com/Q54ueuO.png", | |
"tooltipAnchor": [16,28] | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
0.3, | |
0.0 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "Marker without iconUrl" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
0.4, | |
0.0 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "Orange Marker big size", | |
"iconUrl": "https://i.imgur.com/Q54ueuO.png", | |
"iconSize": [50, 82] | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
0.5, | |
0.0 | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment