Table of Contents

Geo-Codes

See:

GPS coordinates

The new World Geodetic System was called WGS 84. It is currently the reference system being used by GPS.

Google Earth

Google Maps

je kunt ook Google Maps gewoon de coordinaten invullen (ipv straat/plaats):

Conversies

There are three commonly used units types:

Online convert tools:

Tools

Show coordinates of center in Google Maps

javascript:void(prompt('',gApplication.getMap().getCenter()));

UTM

Howto export KML from Google Maps

In Google Maps, you can export your map with the button “View in Google Earth” (NL: “Weergeven in Google Earth”). This will download a KML file. But this KML does NOT contain the GPS coordinates. Instead it contains a web-reference (HREF) to Google Maps.

Example:

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
  <name></name>
  <description><![CDATA[]]></description>
  <NetworkLink>
    <name></name>
    <Link>
      <href>http://maps.google.nl/maps/ms?hl=nl&amp;...
            &amp;msid=103949872864124130000.0001234b8d6c93f97656a&amp;output=kml
      </href>
    </Link>
  </NetworkLink>
</Document>
</kml>

Here is how to get the KML-file with all the GPS coordinates:

This is an example of the resulting KML-file:

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
  <name>d0907 Tour de Vin de France</name>
  <description><![CDATA[]]></description>
  <Placemark>
    <name>Le Brulot</name>
    <description>
      <![CDATA[<div dir="ltr">Antibes<br>Le Brulot 3</div>]]>  
     </description>
    <styleUrl>#style12</styleUrl>
    <Point>
      <coordinates>7.127367,43.581200,0.000000</coordinates>
    </Point>
  </Placemark>
</Document>
</kml>

Short version:

Embedding Google Map in website

Geocoding

Geocoding is the process of converting addresses (like 
"1600 Amphitheatre Parkway, Mountain View, CA") into geographic 
coordinates (like latitude 37.423021 and longitude -122.083739), 
which you can use to place markers or position the map.

Generate KML from Perl