Skip to content

Instantly share code, notes, and snippets.

@bozdoz
Last active October 8, 2024 00:39
Show Gist options
  • Save bozdoz/b3f35f8e4ca8bba0af92d58fe35048b6 to your computer and use it in GitHub Desktop.
Save bozdoz/b3f35f8e4ca8bba0af92d58fe35048b6 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"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