<!-------------------------------------------------------------------->
<!-- library: geography: earth: microsoft: virtual: earth: map [kn, ri, su, 09-04-2006 04:06:39] -->
function FNStringGetGeographyEarthMicrosoftVirtualEarthMapS( s, coordinateLatitudeS, coordinateLongitudeS ) {
 //
 //
 //
 // http://local.live.com/default.aspx?v=2&cp=43.69~7.25&lvl=15
 //
 // ---
 //
 // zoom from 1 (largest distance, least details) to 19 (=smallest distance, most details)
 //
 zoomS = 15;
 return( "http://local.live.com/default.aspx?v=2&cp=" + coordinateLatitudeS + "~" + coordinateLongitudeS + "&" + "lvl" + "=" + zoomS );
}
<!-------------------------------------------------------------------->
<!-- library: geography: earth: mapquest: map [kn, ri, su, 09-04-2006 04:06:39] -->
function FNStringGetGeographyEarthMapquestMapS( s, coordinateLatitudeS, coordinateLongitudeS ) {
 //
 //
 // http://www.mapquest.com/maps/map.adp?searchtype=address&formtype=address&latlongtype=decimal&latitude=43.667&longitude=7.15
 //
 //
 // zoom from 1 (largest distance, least details) to 9 (=smallest distance, most details)
 zoomS = 5;
 return( "http://www.mapquest.com/maps/map.adp?searchtype=address&formtype=address&zoom=" + zoomS + "&latlongtype=decimal&latitude=" + coordinateLatitudeS + "&longitude=" + coordinateLongitudeS );
}
<!-------------------------------------------------------------------->
<!-- library: geography: earth: google: map [kn, ri, sa, 08-04-2006 21:18:15] -->
function FNStringGetGeographyEarthGoogleMapS( s, coordinateLatitudeS, coordinateLongitudeS ) {
 // e.g. alert( FNStringGetGeographyEarthGoogleMapS( coordinateLatitudeS, coordinateLongitudeS ) );
 //
 // ---
 //
 // examples of URL
 //
 // ---
 //
 // http://maps.google.com/maps?q=43.67,7.15+(Cagnes+Sur+Mer)&iwloc=A&hl=en&t=k
 //
 // ---
 //
 // http://maps.google.com/maps?ll=43.67,7.15&spn=0.267792,0.240669&t=k&hl=en
 //
 // ---
 //
 // http://maps.google.com/maps?ll=43.67,7.15&spn=0.035,0.035&t=k&hl=en
 //
 // ---
 //
 // http://maps.google.com/maps?q=43.67,7.15&ll=43.67,7.15&spn=1,1&t=k&hl=en
 //
 // ---
 //
 // http://maps.google.com/maps?q=43.67,7.15&ll=43.67,7.15&spn=0.035,0.035&t=k&hl=en
 //
 // ---
 //
 // http://maps.google.com/maps?q=43.67,7.15+(Cagnes+sur+Mer)&ll=43.67,7.15&spn=0.035,0.035&t=k&hl=en
 //
 // ---
 //
 // // best:
 // http://maps.google.com/maps?q=43.662,7.15+(Cagnes+sur+Mer:+studio+Le+Real)&ll=43.662,7.15&spn=0.035,0.035&t=k&hl=en
 //
 // var zoomHorizontalS = "0.035";
 // var zoomVerticalS = "0.035";
 //
 var zoomHorizontalS = "0.010";
 var zoomVerticalS = "0.010";
 // return( "http://maps.google.com/maps?q=" + coordinateLatitudeS + "+" + coordinateLongitudeS + "+(This+is+your+rental+location)" + "&hl=en" + "&spn=6,6" + "&t=k" );
 // return( "http://maps.google.com/maps?q=" + coordinateLatitudeS + "," + coordinateLongitudeS + "(" + s + ")" + "&ll=" + coordinateLatitudeS + "," + coordinateLongitudeS + "&spn=" + zoomHorizontalS + "," + zoomVerticalS + "&t=k&hl=en" );
 // return( "http://maps.google.com/maps?q=" + coordinateLatitudeS + "," + coordinateLongitudeS + " " + "(" + s + "+.+.+.+.+.+.+.+.+.+.+.+.+.+.+.+.+(you+can+zoom+in+on+the+left.+Also+drag+with+left+mouse+button+pressed+whole+map+up+or+down)" + ")" + "&ll=" + coordinateLatitudeS + "," + coordinateLongitudeS + "&spn=" + zoomHorizontalS + "," + zoomVerticalS + "&t=h" + "&hl=en" ); // [kn, ri, sa, 24-02-2007 16:39:02]
 // return( "http://maps.google.com/maps?q=" + coordinateLatitudeS + "," + coordinateLongitudeS + "(" + s + ")" + "&ll=" + coordinateLatitudeS + "," + coordinateLongitudeS + "&spn=" + zoomHorizontalS + "," + zoomVerticalS + "&t=h" + "&hl=en" );
 // return( "http://maps.google.com/maps?q=" + coordinateLatitudeS + "," + coordinateLongitudeS + "&ll=" + coordinateLatitudeS + "," + coordinateLongitudeS + "&spn=" + zoomHorizontalS + "," + zoomVerticalS + "&t=h" + "&hl=en" + " " + "(" + s + ")" );
 return( "http://maps.google.com/maps?q=" + coordinateLatitudeS + "," + coordinateLongitudeS + "%20" + "(" + s + ")" + "&ll=" + coordinateLatitudeS + "," + coordinateLongitudeS + "&spn=" + zoomHorizontalS + "," + zoomVerticalS + "&t=h" + "&hl=en" );
}
<!-------------------------------------------------------------------->
function PROCWindowOpen( urlS ) {
 window.open( urlS );
}
<!-------------------------------------------------------------------->
<!-- library: geography: earth: mapquest: map [kn, ri, mo, 10-04-2006 19:50:00] -->
function PROCInternetGotoGeographyEarthMicrosoftVirtualEarthMap( s, coordinateLatitudeS, coordinateLongitudeS ) {
 // e.g. <BODY
 // e.g.   ONLOAD = '
 // e.g.    PROCInternetGotoGeographyEarthMicrosoftVirtualEarthMap( "", "43.662", "7.15" );
 // e.g.   '
 // e.g. >
 PROCWindowOpen( FNStringGetGeographyEarthMicrosoftVirtualEarthMapS( s, coordinateLatitudeS, coordinateLongitudeS ) );
}
<!-------------------------------------------------------------------->
<!-- library: geography: earth: mapquest: map [kn, ri, su, 09-04-2006 04:08:56] -->
function PROCInternetGotoGeographyEarthMapquestMap( s, coordinateLatitudeS, coordinateLongitudeS ) {
 // e.g. <BODY
 // e.g.   ONLOAD = '
 // e.g.    PROCInternetGotoGeographyEarthMapquestMap( "", "43.662", "7.15" );
 // e.g.   '
 // e.g. >
 PROCWindowOpen( FNStringGetGeographyEarthMapquestMapS( s, coordinateLatitudeS, coordinateLongitudeS ) );
}
<!-------------------------------------------------------------------->
<!-- library: geography: earth: google: map [kn, ri, sa, 08-04-2006 21:18:15] -->
function PROCInternetGotoGeographyEarthGoogleMap( s, coordinateLatitudeS, coordinateLongitudeS ) {
 // e.g. <BODY
 // e.g.   ONLOAD = '
 // e.g.    PROCInternetGotoGeographyEarthGoogleMap( "Cagnes+sur+Mer\:+studio+Le+Real", "43.662", "7.15" );
 // e.g.   '
 // e.g. >
 PROCWindowOpen( FNStringGetGeographyEarthGoogleMapS( s, coordinateLatitudeS, coordinateLongitudeS ) );
}
<!-------------------------------------------------------------------->
function PROCGeographyViewMapAll( cityS, propertyS, distanceToBeachS, latitudeCoordinateS, longitudeCoordinateS ) {
 // var s1 = cityS + ':+' + propertyS + '+(to beach ' + distanceToBeachS + ')';
 var s1 = cityS + ':' + ' ' + propertyS;
 PROCInternetGotoGeographyEarthMapquestMap( '', latitudeCoordinateS, longitudeCoordinateS );
 PROCInternetGotoGeographyEarthGoogleMap( s1, latitudeCoordinateS, longitudeCoordinateS );
 PROCInternetGotoGeographyEarthMicrosoftVirtualEarthMap( s1, latitudeCoordinateS, longitudeCoordinateS );
}
<!-------------------------------------------------------------------->
document.write( '<STYLE>' );
document.write( ' .Help {' );
document.write( '   position: absolute;' );
document.write( '   posTop: 0;' );
document.write( '   posLeft: 0;' );
document.write( '   border-width:1;' );
document.write( '   border-style: solid;' );
document.write( '   background-color: yellow;' );
document.write( '   color: #000000;' );
document.write( '   width:240;' );
document.write( '   font-size:9pt' );
document.write( ' }' );
document.write( '</STYLE>' );
<!-------------------------------------------------------------------->
document.write( '<DIV' );
document.write( '  ID=FOArea' );
document.write( '  CLASS="Help"' );
document.write( '  STYLE="display: none"' );
document.write( '>' );
document.write( '</DIV>' );
<!-------------------------------------------------------------------->
 var HelpX = 0;
 var HelpY = 0;
 var HelpText = "";
 var ToShow = 0;
 var ToClear = 0;
<!-------------------------------------------------------------------->
function PROCDoFlyOver() {
 if( ToClear != -1 ) {
  window.clearTimeout( ToClear )
 };
 FOArea.innerText = HelpText;
 FOArea.style.posLeft = HelpX;
 FOArea.style.posTop = HelpY;
 FOArea.style.display = "";
 ToClear = setTimeout( "PROCClearFlyOver()", 8000, "JAVASCRIPT" );
}
<!-------------------------------------------------------------------->
function PROCClearFlyOver() {
 FOArea.style.display = "none";
}
<!-------------------------------------------------------------------->
function PROCFlyOver( s ) {
 HelpText = s;
 HelpX = 700;
 HelpY = 4900;
 ToShow = setTimeout( "PROCDoFlyOver()", 500, "JAVASCRIPT" );
}
<!-------------------------------------------------------------------->

