editor Papyrus a jeho užívání
Protože ode dneška je Papyrus nastaven jako standardní editor Waze, tak zavádím tento thread pro řešení problémů s editací v tomto editoru.
Hned na začátek přikládám několik drobností, které Vám snad pomohou s editacemi:
starý editor (cartouche) je dosud k dispozici na stránce: http://world.waze.com/cartouche_old/
kód záložky pro otevření google maps:
kód záložky pro otevření v mapy.cz (nefunguje zoom, zobrazí se střed):
kód záložky pro otevření v mapy.cz (funguje zoom ale nezobrazí se střed):
kód záložky pro otevření v openstreetmap.org
kód záložky pro otevření Papyru ve starém Cartouche:
Hned na začátek přikládám několik drobností, které Vám snad pomohou s editacemi:
starý editor (cartouche) je dosud k dispozici na stránce: http://world.waze.com/cartouche_old/
kód záložky pro otevření google maps:
Code: Select all
javascript:(function(){var%20center_lonlat%20=%20new%20OpenLayers.LonLat(wazeMap.center.lon,wazeMap.center.lat);center_lonlat.transform(new%20OpenLayers.Projection("EPSG:900913"),%20new%20OpenLayers.Projection("EPSG:4326"));window.open('http://maps.google.com/maps?q='+center_lonlat.lat+','+center_lonlat.lon+'&z='+%20(wazeMap.zoom+12));})();
Code: Select all
javascript:(function(){var%20center_lonlat%20=%20new%20OpenLayers.LonLat(wazeMap.center.lon,wazeMap.center.lat);center_lonlat.transform(new%20OpenLayers.Projection("EPSG:900913"),%20new%20OpenLayers.Projection("EPSG:4326"));window.open('http://www.mapy.cz/#q='%20+center_lonlat.lat%20+%20'%C2%B0N,%20'%20+%20center_lonlat.lon%20+%20'%C2%B0E');})();
Code: Select all
javascript:(function(){var%20center_lonlat%20=%20new%20OpenLayers.LonLat(wazeMap.center.lon,wazeMap.center.lat);center_lonlat.transform(new%20OpenLayers.Projection("EPSG:900913"),%20new%20OpenLayers.Projection("EPSG:4326"));window.open('http://www.mapy.cz/#x='+center_lonlat.lon+'&y='+center_lonlat.lat+'&z='+(wazeMap.zoom+11));})();
Code: Select all
javascript:(function(){var%20center_lonlat%20=%20new%20OpenLayers.LonLat(wazeMap.center.lon,wazeMap.center.lat);center_lonlat.transform(new%20OpenLayers.Projection("EPSG:900913"),%20new%20OpenLayers.Projection("EPSG:4326"));window.open('http://www.openstreetmap.org/?mlat='+center_lonlat.lat+'&mlon='+center_lonlat.lon+'&zoom='+%20(wazeMap.zoom+13));})();
Code: Select all
javascript:(function(){var center_lonlat=new OpenLayers.LonLat(wazeMap.center.lon,wazeMap.center.lat);center_lonlat.transform(new OpenLayers.Projection("EPSG:900913"),new OpenLayers.Projection("EPSG:4326"));window.open('http://'+window.location.hostname+'/cartouche_old/?zoom='+(wazeMap.zoom)+'&lon='+center_lonlat.lon+'&lat='+center_lonlat.lat,'CartoucheOld');})();
POSTER_ID:18739
1
Re: editor Papyrus a jeho užívání