2006Scape Wiki:Map: Difference between revisions
Jump to navigation
Jump to search
no edit summary
scape_>Ralpha No edit summary |
scape_>Ralpha No edit summary |
||
Line 13: | Line 13: | ||
* RS3 example (not up-to-date): https://rs-wiki.gitlab.io/maps/#2/3225.0/3219.0 | * RS3 example (not up-to-date): https://rs-wiki.gitlab.io/maps/#2/3225.0/3219.0 | ||
|| | || | ||
Report the problems you have here (follow link of item): | |||
* | * [https://gitlab.com/weirdgloop/map-tile-generator/issues Tiles, map background], | ||
* | * [https://gitlab.com/weirdgloop/doogle-maps/issues Interface on maps.runescape.wiki], | ||
* | * [https://gitlab.com/weirdgloop/extensions/kartographer/issues wiki interface, wiki integration], | ||
* [https://gitlab.com/weirdgloop/extensions/kartographer/issues other issues, if not sure], or join us on [[RuneScape:Discord|Discord]] #cartographers) | |||
|| | || | ||
* Design documents: https://docs.google.com/document/d/1xv7iVBkG6eWDrXFhIYi77AVodJc0D-4Aqn0ncZXKJfw | * Design documents: https://docs.google.com/document/d/1xv7iVBkG6eWDrXFhIYi77AVodJc0D-4Aqn0ncZXKJfw | ||
Line 29: | Line 29: | ||
|} | |} | ||
Example for a (quest) map: | |||
<mapframe text="Quest: Cooks Assistant" width=450 height=450 zoom=1 x=3188 y=3260 frameless align="center" > | |||
{ | |||
"type": "FeatureCollection", | |||
"features": [ | |||
{ | |||
"type": "Feature", | |||
"properties": { | |||
"info": "Start Quest", | |||
"title": "Talk to the cook", | |||
"providerID": 2, | |||
"icon": "quest_start", | |||
"mapID": 0 | |||
}, | |||
"geometry": { | |||
"type": "Point", | |||
"coordinates": [ | |||
3208, | |||
3213, | |||
0 | |||
] | |||
} | |||
},{ | |||
"type": "Feature", | |||
"properties": { | |||
"title": "Buy a bucket and a pot", | |||
"providerID": 2, | |||
"icon": "general_store", | |||
"mapID": 0 | |||
}, | |||
"geometry": { | |||
"type": "Point", | |||
"coordinates": [ | |||
3211, | |||
3246, | |||
0 | |||
] | |||
} | |||
},{ | |||
"type": "Feature", | |||
"properties": { | |||
"title": "Milk Cow", | |||
"providerID": 2, | |||
"icon": "dairy_cow", | |||
"mapID": 0 | |||
}, | |||
"geometry": { | |||
"type": "Point", | |||
"coordinates": [ | |||
3174, | |||
3317, | |||
0 | |||
] | |||
} | |||
},{ | |||
"type": "Feature", | |||
"properties": { | |||
"title": "Mill flower", | |||
"providerID": 2, | |||
"icon": "windmill", | |||
"mapID": 0 | |||
}, | |||
"geometry": { | |||
"type": "Point", | |||
"coordinates": [ | |||
3166, | |||
3306, | |||
0 | |||
] | |||
} | |||
},{ | |||
"type": "Feature", | |||
"properties": { | |||
"title": "Pick-up an egg", | |||
"iconWikiLink": "File:Egg.png", | |||
"iconSize": [15,20], | |||
"mapID": 0 | |||
}, | |||
"geometry": { | |||
"type": "Point", | |||
"coordinates": [ | |||
3177, | |||
3306, | |||
0 | |||
] | |||
} | |||
}, | |||
{ | |||
"type": "Feature", | |||
"properties": { | |||
"navigation": false, | |||
"mapID": 0 | |||
}, | |||
"geometry": { | |||
"type": "LineString", | |||
"coordinates": [ | |||
[ | |||
3208, | |||
3213, | |||
0 | |||
], | |||
[ | |||
3211, | |||
3246, | |||
0 | |||
], | |||
[ | |||
3174, | |||
3317, | |||
0 | |||
], | |||
[ | |||
3166, | |||
3306, | |||
0 | |||
], | |||
[ | |||
3177, | |||
3306, | |||
0 | |||
], | |||
[ | |||
3208, | |||
3213, | |||
0 | |||
] | |||
] | |||
} | |||
} | |||
] | |||
} | |||
</mapframe> | |||