OSM <-> Mapillary
by
muramototomoya
2017-09-25 [2017/09/25 23:11:34]
Switch between OSM and Mapillary
/*
* @title OSM <-> Mapillary
* @description Switch between OSM and Mapillary
* @include http://*
* @license MIT License
* @require
*/
var map_url = location.href;
xyz = map_url.match(/\d[0-9.]*/g);
if (map_url.match(/(mapillary)/)){
window.location.href = 'http://www.openstreetmap.org/#map=' + xyz[2] + '/' + xyz[0] + '/' + xyz[1];
}
else if(map_url.match(/(openstreetmap)/)){
window.location.href = 'https://www.mapillary.com/app/?lat=' + xyz[1] + '&lng=' + xyz[2] + '&z=' + xyz[0];
}
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。