Google Maps de conversion de l'adresse de latitude & longitude - PHP backend?

est-il possible de convertir (dans PHP back-end):

<?php
  $Address = "Street 1, City, Country"; //just normal address
?>

à

<?php
  $LatLng = "10.0,20.0"; //latitude & lonitude
?>

Le code que j'utilise actuellement est celui par défaut:

<script type='text/javascript' src='https://maps.googleapis.com/maps/api/js?v=3.exp&#038;sensor=false'></script>

<script>

function initialize() {
  var myLatlng = new google.maps.LatLng(10.0,20.0);
  var mapOptions = {
    zoom: 16,
    center: myLatlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(document.getElementById('map'), mapOptions);

  var marker = new google.maps.Marker({
      position: myLatlng,
      map: map,
      title: 'This is a caption'
  });
}

google.maps.event.addDomListener(window, 'load', initialize); 

</script>

<div id="map"></div>

J'ai lu https://developers.google.com/maps/documentation/geocoding pour un certain temps maintenant, mais je ne suis pas assez expérimenté, je suppose.

Grâce.

OriginalL'auteur WordPressor | 2013-09-03