Hi jeanbon,
I had used the Httfox module (Firefox) for obtain the google maps (SAT version) and it is Ok (actual version 159).
How can I do the same with the other google maps: street (roadmap) and terrain?
Thanks
Printable View
Hi jeanbon,
I had used the Httfox module (Firefox) for obtain the google maps (SAT version) and it is Ok (actual version 159).
How can I do the same with the other google maps: street (roadmap) and terrain?
Thanks
Hi,
I am having the same problem that the satellite images do not show up sharp but blurred.
How can I enter the necessary settings "v=150" or now the correct version, please.
Thank you
Hi Mongolia,
Google sat is now in version v=178
Regards
Jeanbon
hi all
can any one guide me to download marine navigating charts with mobile atlas creator please
thank you
Can anyone please tell me the latest google sat. version?
Or please show me how to get it myself with Cacheviewer or Httpfox module on firefox, I tried but can't find it.
Thanks so much.
Google sat ver = 722 :book:
Thanks a lot Alan :)
Alternatively does anyone know how to ad mapbox satellite to mapsources?
[Only registered and activated users can see links. Click Here To Register...]
Code:<?xml version="1.0" encoding="UTF-8"?>
<customMapSource>
<name>Google Sat</name>
<minZoom>0</minZoom>
<maxZoom>20</maxZoom>
<tileType>PNG</tileType>
<tileUpdate>None</tileUpdate>
<serverParts>0 1 2 3</serverParts>
<url>http://khm{$serverpart}.google.com/kh/v=722&x={$x}&y={$y}&z={$z}</url>
<backgroundColor>#000000</backgroundColor>
</customMapSource>
hi all
GoogleSatellite.bsh
Code:name = "Google Satellite";
String Lyrs = "s";
tileType = "jpg";
maxZoom = 21;
String getTileUrl( int Zoom, int X, int Y ) {
return "http://mt0.google.com/vt/lyrs="+Lyrs+"&x="+X+"&y="+Y+"&z="+Zoom;
}
/**
h = roads only 0-22
m = standard roadmap (Plan) 0-22
p = terrain = t,r 0-22
r = somehow altered roadmap 0-22
s = satellite only 0-21
t = terrain only 0-22
y = hybrid = s,r (Earth) 0.21
**/
hi all
Virtual-Earth-Satellite.bsh
Code:static import java.lang.Math.*;
name = "Virtual-Earth-Satellite";
tileType = "jpg";
String getTileUrl( int zoom, int x, int y )
{
res="";
prX = osY = osX = pow(2,zoom-1);
for (i=0;i<(zoom);i++)
{
prX = prX/2;
if (x < osX)
{ osX=osX-prX;
if (y<osY)
{ osY=osY-prX;
res=res+"0";
}
else
{ osY=osY+prX;
res=res+"2";
}
}
else
{ osX=osX+prX;
if (y<osY) {
osY=osY-prX;
res=res+"1";
}
else {
osY=osY+prX;
res=res+"3";
}
}
}
return "http://ecn.t0.tiles.virtualearth.net/tiles/a"+res+".jpeg?g=685&mkt=en-us&n=z";
}
Quote:
Originally Posted by Allin [Only registered and activated users can see links. Click Here To Register...]
Hello,
I try to find a tutorial for " satellite view in MOBAC " but i can find anything....
Can you help me please?
Thanks