• Home

  • Custom Ecommerce
  • Application Development
  • Database Consulting
  • Cloud Hosting
  • Systems Integration
  • Legacy Business Systems
  • Security & Compliance
  • GIS

  • Expertise

  • About Us
  • Our Team
  • Clients
  • Blog
  • Careers

  • CasePointer

  • VisionPort

  • Contact
  • Our Blog

    Ongoing observations by End Point Dev people

    Google Maps JavaScript API LatLng Property Name Changes

    Greg Davidson

    By Greg Davidson
    June 11, 2015

    Debugging Broken Maps

    A few weeks ago I had to troubleshoot some Google Maps related code that had suddenly stopped working. Some debugging revealed the issue: the code adding markers to the page was attempting to access properties that did not exist. This seemed odd because the latitude and longitude values were the result of a geocoding request which was completing successfully. The other thing which stood out to me were the property names themselves:

    var myLoc = new google.maps.LatLng(results[0].geometry.location.k, results[0].geometry.location.D);
    

    It looked like the original author had inspected the geocoded response, found the ‘k’ and ‘D’ properties which held latitude and longitude values and used them in their maps code. This had all been working fine until Google released a new version of their JavaScript API. Sites that did not specify a particular version of the API were upgraded to the new version automatically. If you have Google Maps code which stopped working recently this might be the reason why.

    The Solution: Use the built-in methods in the LatLng class

    Screen Shot 2015 06 10 at 3 47 32 PM

    I recalled there being some helper methods for LatLng objects and confirmed this with a visit to the docs for the LatLng class which had recently been updated and given the Material design treatment—​thanks Google! The lat() and lng() methods were what I needed and updating the code with them fixed the issue. The fixed code was similar to this:

    var myLoc = new google.maps.LatLng(results[0].geometry.location.lat(), results[0].geometry.location.lng());
    

    Digging Deeper

    I was curious about this so I mapped out the differences between the three latest versions of the API:

    API Version Latitude Property Longitude Property Constructor Name
    3.21.x (experimental) A F rf
    3.20.x (release) A F pf
    3.19.x (frozen) k D pf

    It seems to me that the property name changes are a result of running the Google Maps API code through the Closure Compiler. Make sure to use the built-in lat() and lng() methods as these property names are very likely to change again in future!

    html javascript api


    Comments