<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Google Data &#187; Google Earth</title>
	<atom:link href="/tag/google-earth/feed/" rel="self" type="application/rss+xml" />
	<link>https://googledata.org</link>
	<description>Everything Google: News, Products, Services, Content, Culture</description>
	<lastBuildDate>Wed, 28 Dec 2016 21:09:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.13</generator>
	<item>
		<title>Geolocation and Firebase for the Internet of Things</title>
		<link>https://googledata.org/google-maps/geolocation-and-firebase-for-the-internet-of-things/</link>
		<comments>https://googledata.org/google-maps/geolocation-and-firebase-for-the-internet-of-things/#comments</comments>
		<pubDate>Wed, 21 Dec 2016 17:48:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=768df7ca9a4bcff5725c0cab6bd829d6</guid>
		<description><![CDATA[<span><i>Posted by Ken Nevarez, Industry Solutions Lead at Google</i></span><br /><br />
GPS is the workhorse of location based services, but there are use cases where you may want to avoid the cost and power consumption of GPS hardware or locate devices in places where GPS lacks accuracy, such as in urban environments or buildings.<br /><br />
We've seen recent growth in Internet of Things (IoT) applications using the <a href="https://developers.google.com/maps/documentation/geolocation/intro" target="_blank">Google Maps Geolocation API</a> instead of GPS for asset tracking, theft prevention, usage optimization, asset servicing, and more. As part of my 20 percent project at Industry Solutions, I created a prototype IoT device that can locate itself using surrounding WiFi networks and the Google Maps Geolocation API. In this post, I&#8217;ll discuss some interesting implementation features and outline how you can create the prototype yourself.<br /><br />
I built a device that scans for local WiFi and writes results (WiFi hotspots and their signal strength) to a <a href="https://firebase.google.com/docs/database/" target="_blank">Firebase Realtime Database</a>. A back-end service then reads this data and uses the Google Maps Geolocation API to turn this into a real-world location, which can be plotted on a map.<br /><div>
<span><img height="236" src="https://lh5.googleusercontent.com/neJM9GPHe1AzTaVTYXWK2IhqOpqAHNGyQszvXdUa8NR5v6DepQcMgVhGmUGtgUzIaKT7yGVAzMtsKtU3CNJwh_nNsfzf84Cf2KC8g-eL9j4E6EVA32gRWQwqhe6EGiJPca2Nf20K" width="640"></span></div>
<span></span><br /><h3>
Set up the Device &#38; Write Locally</h3>
For this proof of concept, I used the <a href="https://software.intel.com/en-us/iot/hardware/edison" target="_blank">Intel Edison</a> as a Linux-based computing platform and augmented it with  <a href="https://learn.sparkfun.com/tutorials/general-guide-to-sparkfun-blocks-for-intel-edison" target="_blank">Sparkfun&#8217;s Edison Blocks</a>. To build the device, you will need an <a href="https://www.sparkfun.com/products/13024?_ga=1.195399918.391268827.1462892549" target="_blank">Intel Edison</a>, a <a href="https://www.sparkfun.com/products/13045?_ga=1.195399918.391268827.1462892549" target="_blank">Base Block</a>, a <a href="https://www.sparkfun.com/products/13037" target="_blank">Battery Block</a> and a <a href="https://www.sparkfun.com/products/13187?_ga=1.202355155.391268827.1462892549" target="_blank">Hardware pack</a>.<br /><div>
<span><img height="291" src="https://lh6.googleusercontent.com/y4m85D_7TJJtZUNr-KN4oBdfD8TOgF_Za5nSaZE7T94av8i2ykFsdsQo3ju9UZ-OOF_K84SsNIdmFgpcYTQjgQ_0TAObZQTp6qMn8H8YCFIerQc30MVrSlM-zq6MBifTZvRuPBGO" width="358"></span></div>
<span></span><br />
Developing for the Edison is straightforward using the <a href="https://software.intel.com/en-us/intel-xdk" target="_blank">Intel XDK IDE</a>. We will be creating a simple Node.js application in JavaScript. I relied on 3 libraries: <a href="https://firebase.google.com/docs/server/setup" target="_blank">Firebase</a> for the database connection, <a href="https://github.com/bakerface/wireless-tools" target="_blank">wireless-tools/iwlist</a> to capture WiFi networks, and <a href="https://github.com/scravy/node-macaddress" target="_blank">macaddress</a> to capture the device MAC. Installation instructions can be found on the linked pages.<br /><br />
Step 1: get the device MAC address and connect to Firebase:<br /><pre>function initialize() {
    macaddress.one('wlan0', function (err, mac) {
        mac_address = mac;
        if (mac === null) {
            console.log('exiting due to null mac Address');
            process.exit(1);
        }
        firebase.initializeApp({
            serviceAccount: '/node_app_slot/&#60;service-account-key&#62;.json',
            databaseURL: 'https://&#60;project-id&#62;.firebaseio.com/'
        });
        var db = firebase.database();
        ref_samples = db.ref('/samples');
        locationSample();
    });
}</pre>
The above code contains two placeholders:<br /><br /><ol><li>The <span>service-account-key</span> is a private key you create in the Firebase Console. Follow the gear icon in the upper left of console, select &#8220;settings&#8221;, and click Generate New Private Key. Place this key on your Edison in the directory <span>/node_app_slot/</span>. See this <a href="https://firebase.google.com/docs/auth/android/custom-auth" target="_blank">Firebase documentation</a> for more information.</li>
<li>The <span>project-id</span> in the database URL is found in the Firebase console database page after you have linked your Google project with Firebase.</li>
</ol><br /><br />
Step 2: scan for WiFi networks every 10 seconds and write locally:<br /><pre>function locationSample() {
    var t = new Date();
    iwlist.scan('wlan0', function(err, networks) {
        if(err === null) {
            ref_samples.push({
                mac: mac_address,
                t_usec: t.getTime(),
                t_locale_string: t.toLocaleString(),
                networks: networks,
            });
        } else {
            console.log(err);
        }        
    });
    setTimeout(locationSample, 10000);
}</pre>
<h3>
Write to the cloud</h3>
The locationSample() function above writes detectable WiFi networks to a Firebase database that syncs to the cloud when connected to a network.<br /><br /><b>Caveat:</b> To configure access rights and authentication to Firebase, I set up the device as a &#8220;server&#8221;. Instructions for this configuration are on the <a href="https://firebase.google.com/docs/admin/setup" target="_blank">Firebase website</a>. For this proof of concept, I made the assumption that the device was secure enough to house our credentials. If this is not the case for your implementation you should instead follow the instructions for <a href="https://firebase.google.com/docs/web/setup" target="_blank">setting up the client JavaScript SDK</a>.<br /><br />
The database uses 3 queues to manage workload: a WiFi samples queue, a geolocation results queue and a visualization data queue. The workflow will be: samples from the device go into a samples queue, which gets consumed to produce geolocations that are put into a geolocations queue. Geolocations are consumed and formatted for presentation, organized by device, and the output is stored in a visualizations bucket for use by our front end website. <br /><br />
Below is an example of a sample, a geolocation, and our visualization data written by the device and seen in the Firebase Database Console.<br /><div>
<a href="https://3.bp.blogspot.com/-MIJio2v0K7Q/WFl2r6Q2TfI/AAAAAAAAAkE/e8_n-lDVt306EzWQgxuEeT8LkD7OXbwUACLcB/s1600/Samples_iot.png"><img border="0" height="284" src="https://3.bp.blogspot.com/-MIJio2v0K7Q/WFl2r6Q2TfI/AAAAAAAAAkE/e8_n-lDVt306EzWQgxuEeT8LkD7OXbwUACLcB/s640/Samples_iot.png" width="640"></a></div>
<h4>
Processing the Data with Google App Engine</h4>
To execute the processing of the sample data I used a long running Google App Engine Backend Module and a custom version of the <a href="https://github.com/googlemaps/google-maps-services-java" target="_blank">Java Client for Google Maps Services</a>. <br /><br /><b>Caveat:</b> <a href="https://cloud.google.com/solutions/mobile/firebase-app-engine-android-studio#configuring_the_app_engine_backend_to_use_manual_scaling" target="_blank">To use Firebase with App Engine, you must use manual scaling</a>. Firebase uses background threads to listen for changes and App Engine only allows long-lived background threads on manually scaled backend instances.<br /><br />
The <a href="https://github.com/googlemaps/google-maps-services-java" target="_blank">Java Client for Google Maps Services</a> takes care of a lot of the communications code required to use the Maps APIs and follows our <a href="https://maps-apis.googleblog.com/2016/09/making-most-of-google-maps-web-service.html" target="_blank">published best practices</a> for error handling and retry strategies that respect rate limits. The <span>GeolocateWifiSample()</span> function below is registered as an event listener with Firebase. It loops over each network reported by the device and incorporates it into the geolocation request.<br /><pre>private void GeolocateWifiSample(DataSnapshot sample,  Firebase db_geolocations, Firebase db_errors) {
    // initalize the context and request
    GeoApiContext context = new GeoApiContext(new GaeRequestHandler()).setApiKey("");
    GeolocationApiRequest request = GeolocationApi.newRequest(context)
            .ConsiderIp(false);
    // for every network that was reported in this sample...
    for (DataSnapshot wap : sample.child("networks").getChildren()) {
        // extract the network data from the database so it&#8217;s easier to work with
        String wapMac = wap.child("address").getValue(String.class);
        int wapSignalToNoise = wap.child("quality").getValue(int.class);
        int wapStrength = wap.child("signal").getValue(int.class);
        // include this network in our request
        request.AddWifiAccessPoint(new WifiAccessPoint.WifiAccessPointBuilder()
                .MacAddress(wapMac)
                .SignalStrength(wapStrength)
                .SignalToNoiseRatio(wapSignalToNoise)
                .createWifiAccessPoint());
    }
    ...
    try {
        // call the api
        GeolocationResult result = request.CreatePayload().await();
        ...
        // write results to the database and remove the original sample
    } catch (final NotFoundException e) {
        ...
    } catch (final Throwable e) {
        ...
    }
}</pre>
Register the <span>GeolocateWifiSample()</span> function as an event handler. The other listeners that process geolocation results and create the visualization data are built in a similar pattern.<br /><pre>ChildEventListener samplesListener = new ChildEventListener() {
    @Override
    public void onChildAdded(DataSnapshot dataSnapshot, String previousChildName) {
        // geolocate and write to new location
        GeolocateWifiSample(dataSnapshot, db_geolocations, db_errors);
    }
    ...
};
db_samples.addChildEventListener(samplesListener);</pre>
<h3>
Visualize the Data</h3>
To visualize the device locations I used Google App Engine to serve stored data from Firebase and the Google Maps JavaScript API to create a simple web page that displays the results. The index.html page contains an empty &#60;div&#62; with id &#8220;map&#8221;. I initialized this &#60;div&#62; to contain the Google Map object. I also added &#8220;child_added&#8221; and &#8220;child_removed&#8221; event handlers to update the map as the data changes over time.<br /><pre>function initMap() {
    // attach listeners
    firebase.database().ref('/visualization').on('child_added', function(data) {
        ...
        data.ref.on('child_added', function(vizData) {
            circles[vizData.key]= new CircleRoyale(map,
                                vizData.val().lat,
                                vizData.val().lng,
                                vizData.val().accuracy,
                                color);
          set_latest_position(data.key, vizData.val().lat, vizData.val().lng);
        });
        data.ref.on('child_removed', function(data) {
            circles[data.key].removeFromMap();
        });
    });
    // create the map
    map = new google.maps.Map(document.getElementById('map'), {
      center: get_next_device(),
      zoom: 20,
      scaleControl: true,
    });
    ...
}</pre>
Since the API returns not only a location but also an indication of accuracy, I&#8217;ve created a custom marker that has a pulsing radius to indicate the accuracy component. <br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><img height="359" src="https://lh3.googleusercontent.com/mwEs7P3LMkAHXjvvhi8R_bF2rV32R1TXsQe1ZmQLBnca-V5FgXnbRNPseaxFd6Y14TtRDWxS9mq90qCO87Ynp00cxGv7qWSf-_0pyj6nMnaVR20uQZgie00oRIgOBa3HbTWFhBAL" width="640"></td></tr><tr><td>Two devices (red and blue) and their last five known positions</td></tr></tbody></table><div>
<span></span></div>
<span></span><br /><h3>
What&#8217;s next?</h3>
In this post I&#8217;ve outlined how you can build an IoT device that uses Google Maps Geolocation API to track any internet-connected device - from robotics to wearables. The App Engine processing module can be expanded to use other Google Maps APIs&#160;<a href="https://developers.google.com/maps/web-services/" target="_blank">Web Services</a> providing geographic data such as <a href="https://developers.google.com/maps/documentation/directions/" target="_blank">directions</a>, <a href="https://developers.google.com/maps/documentation/elevation/start" target="_blank">elevation</a>, <a href="https://developers.google.com/places/web-service/" target="_blank">place</a> or <a href="https://developers.google.com/maps/documentation/timezone/start" target="_blank">time zone</a> information. Happy building!<br /><br />
As an alternative, you can achieve a similar solution using Google Cloud Platform as a replacement for Firebase&#8212;<a href="https://cloud.google.com/solutions/scalable-geolocation-telemetry-system-using-maps-api#top_of_page" target="_blank">this article</a> shows you how.<br /><table><tbody><tr><td><br /><div>
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/J9CJgmBXfg81AdomnyX_aCbetiE1SHVGkGcHSZT6dVfRBX_dOQ7rhj8gmbR8mR8SYSZ-RcZS5VOFZTZAg4zYryTeFJydgxkt5SrKSYTkyKKIRfxaHTs1965c7UEpUkkFtcX5IeP7"></div>
</td>  <td>About Ken:<i> Ken is a Lead on the Industry Solutions team. He works with customers to bring innovative solutions to market.</i></td></tr></tbody></table>]]></description>
				<content:encoded><![CDATA[<span class="post-author"><i>Posted by Ken Nevarez, Industry Solutions Lead at Google</i></span><br />
<br />
GPS is the workhorse of location based services, but there are use cases where you may want to avoid the cost and power consumption of GPS hardware or locate devices in places where GPS lacks accuracy, such as in urban environments or buildings.<br />
<br />
We've seen recent growth in Internet of Things (IoT) applications using the <a href="https://developers.google.com/maps/documentation/geolocation/intro" >Google Maps Geolocation API</a> instead of GPS for asset tracking, theft prevention, usage optimization, asset servicing, and more. As part of my 20 percent project at Industry Solutions, I created a prototype IoT device that can locate itself using surrounding WiFi networks and the Google Maps Geolocation API. In this post, I’ll discuss some interesting implementation features and outline how you can create the prototype yourself.<br />
<br />
I built a device that scans for local WiFi and writes results (WiFi hotspots and their signal strength) to a <a href="https://firebase.google.com/docs/database/" >Firebase Realtime Database</a>. A back-end service then reads this data and uses the Google Maps Geolocation API to turn this into a real-world location, which can be plotted on a map.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: &quot;open sans&quot;; font-size: 13.3333px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img height="236" src="https://lh5.googleusercontent.com/neJM9GPHe1AzTaVTYXWK2IhqOpqAHNGyQszvXdUa8NR5v6DepQcMgVhGmUGtgUzIaKT7yGVAzMtsKtU3CNJwh_nNsfzf84Cf2KC8g-eL9j4E6EVA32gRWQwqhe6EGiJPca2Nf20K" style="border: none; transform: rotate(0rad);" width="640" /></span></div>
<span id="docs-internal-guid-396aa1e6-1d66-a36b-25e2-9fad4bb1513a"></span><br />
<h3>
Set up the Device &amp; Write Locally</h3>
For this proof of concept, I used the <a href="https://software.intel.com/en-us/iot/hardware/edison" >Intel Edison</a> as a Linux-based computing platform and augmented it with  <a href="https://learn.sparkfun.com/tutorials/general-guide-to-sparkfun-blocks-for-intel-edison" >Sparkfun’s Edison Blocks</a>. To build the device, you will need an <a href="https://www.sparkfun.com/products/13024?_ga=1.195399918.391268827.1462892549" >Intel Edison</a>, a <a href="https://www.sparkfun.com/products/13045?_ga=1.195399918.391268827.1462892549" >Base Block</a>, a <a href="https://www.sparkfun.com/products/13037" >Battery Block</a> and a <a href="https://www.sparkfun.com/products/13187?_ga=1.202355155.391268827.1462892549" >Hardware pack</a>.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="background-color: white; color: #212121; font-family: &quot;arial&quot;; font-size: 13.3333px; font-weight: 700; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img height="291" src="https://lh6.googleusercontent.com/y4m85D_7TJJtZUNr-KN4oBdfD8TOgF_Za5nSaZE7T94av8i2ykFsdsQo3ju9UZ-OOF_K84SsNIdmFgpcYTQjgQ_0TAObZQTp6qMn8H8YCFIerQc30MVrSlM-zq6MBifTZvRuPBGO" style="border: none; transform: rotate(0rad);" width="358" /></span></div>
<span id="docs-internal-guid-396aa1e6-1d6e-ed53-b851-7da396a26e38"></span><br />
Developing for the Edison is straightforward using the <a href="https://software.intel.com/en-us/intel-xdk" >Intel XDK IDE</a>. We will be creating a simple Node.js application in JavaScript. I relied on 3 libraries: <a href="https://firebase.google.com/docs/server/setup" >Firebase</a> for the database connection, <a href="https://github.com/bakerface/wireless-tools" >wireless-tools/iwlist</a> to capture WiFi networks, and <a href="https://github.com/scravy/node-macaddress" >macaddress</a> to capture the device MAC. Installation instructions can be found on the linked pages.<br />
<br />
Step 1: get the device MAC address and connect to Firebase:<br />
<pre>function initialize() {
    macaddress.one('wlan0', function (err, mac) {
        mac_address = mac;
        if (mac === null) {
            console.log('exiting due to null mac Address');
            process.exit(1);
        }
        firebase.initializeApp({
            serviceAccount: '/node_app_slot/&lt;service-account-key&gt;.json',
            databaseURL: 'https://&lt;project-id&gt;.firebaseio.com/'
        });
        var db = firebase.database();
        ref_samples = db.ref('/samples');
        locationSample();
    });
}</pre>
The above code contains two placeholders:<br />
<br />
<ol>
<li>The <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">service-account-key</span> is a private key you create in the Firebase Console. Follow the gear icon in the upper left of console, select “settings”, and click Generate New Private Key. Place this key on your Edison in the directory <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">/node_app_slot/</span>. See this <a href="https://firebase.google.com/docs/auth/android/custom-auth" >Firebase documentation</a> for more information.</li>
<li>The <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">project-id</span> in the database URL is found in the Firebase console database page after you have linked your Google project with Firebase.</li>
</ol>
<br />
<br />
Step 2: scan for WiFi networks every 10 seconds and write locally:<br />
<pre>function locationSample() {
    var t = new Date();
    iwlist.scan('wlan0', function(err, networks) {
        if(err === null) {
            ref_samples.push({
                mac: mac_address,
                t_usec: t.getTime(),
                t_locale_string: t.toLocaleString(),
                networks: networks,
            });
        } else {
            console.log(err);
        }        
    });
    setTimeout(locationSample, 10000);
}</pre>
<h3>
Write to the cloud</h3>
The locationSample() function above writes detectable WiFi networks to a Firebase database that syncs to the cloud when connected to a network.<br />
<br />
<b>Caveat:</b> To configure access rights and authentication to Firebase, I set up the device as a “server”. Instructions for this configuration are on the <a href="https://firebase.google.com/docs/admin/setup" >Firebase website</a>. For this proof of concept, I made the assumption that the device was secure enough to house our credentials. If this is not the case for your implementation you should instead follow the instructions for <a href="https://firebase.google.com/docs/web/setup" >setting up the client JavaScript SDK</a>.<br />
<br />
The database uses 3 queues to manage workload: a WiFi samples queue, a geolocation results queue and a visualization data queue. The workflow will be: samples from the device go into a samples queue, which gets consumed to produce geolocations that are put into a geolocations queue. Geolocations are consumed and formatted for presentation, organized by device, and the output is stored in a visualizations bucket for use by our front end website. <br />
<br />
Below is an example of a sample, a geolocation, and our visualization data written by the device and seen in the Firebase Database Console.<br />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://3.bp.blogspot.com/-MIJio2v0K7Q/WFl2r6Q2TfI/AAAAAAAAAkE/e8_n-lDVt306EzWQgxuEeT8LkD7OXbwUACLcB/s1600/Samples_iot.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="284" src="https://3.bp.blogspot.com/-MIJio2v0K7Q/WFl2r6Q2TfI/AAAAAAAAAkE/e8_n-lDVt306EzWQgxuEeT8LkD7OXbwUACLcB/s640/Samples_iot.png" width="640" /></a></div>
<h4>
Processing the Data with Google App Engine</h4>
To execute the processing of the sample data I used a long running Google App Engine Backend Module and a custom version of the <a href="https://github.com/googlemaps/google-maps-services-java" >Java Client for Google Maps Services</a>. <br />
<br />
<b>Caveat:</b> <a href="https://cloud.google.com/solutions/mobile/firebase-app-engine-android-studio#configuring_the_app_engine_backend_to_use_manual_scaling" >To use Firebase with App Engine, you must use manual scaling</a>. Firebase uses background threads to listen for changes and App Engine only allows long-lived background threads on manually scaled backend instances.<br />
<br />
The <a href="https://github.com/googlemaps/google-maps-services-java" >Java Client for Google Maps Services</a> takes care of a lot of the communications code required to use the Maps APIs and follows our <a href="https://maps-apis.googleblog.com/2016/09/making-most-of-google-maps-web-service.html" >published best practices</a> for error handling and retry strategies that respect rate limits. The <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">GeolocateWifiSample()</span> function below is registered as an event listener with Firebase. It loops over each network reported by the device and incorporates it into the geolocation request.<br />
<pre>private void GeolocateWifiSample(DataSnapshot sample,  Firebase db_geolocations, Firebase db_errors) {
    // initalize the context and request
    GeoApiContext context = new GeoApiContext(new GaeRequestHandler()).setApiKey("<your api="" key="">");
    GeolocationApiRequest request = GeolocationApi.newRequest(context)
            .ConsiderIp(false);
    // for every network that was reported in this sample...
    for (DataSnapshot wap : sample.child("networks").getChildren()) {
        // extract the network data from the database so it’s easier to work with
        String wapMac = wap.child("address").getValue(String.class);
        int wapSignalToNoise = wap.child("quality").getValue(int.class);
        int wapStrength = wap.child("signal").getValue(int.class);
        // include this network in our request
        request.AddWifiAccessPoint(new WifiAccessPoint.WifiAccessPointBuilder()
                .MacAddress(wapMac)
                .SignalStrength(wapStrength)
                .SignalToNoiseRatio(wapSignalToNoise)
                .createWifiAccessPoint());
    }
    ...
    try {
        // call the api
        GeolocationResult result = request.CreatePayload().await();
        ...
        // write results to the database and remove the original sample
    } catch (final NotFoundException e) {
        ...
    } catch (final Throwable e) {
        ...
    }
}</your></pre>
Register the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">GeolocateWifiSample()</span> function as an event handler. The other listeners that process geolocation results and create the visualization data are built in a similar pattern.<br />
<pre>ChildEventListener samplesListener = new ChildEventListener() {
    @Override
    public void onChildAdded(DataSnapshot dataSnapshot, String previousChildName) {
        // geolocate and write to new location
        GeolocateWifiSample(dataSnapshot, db_geolocations, db_errors);
    }
    ...
};
db_samples.addChildEventListener(samplesListener);</pre>
<h3>
Visualize the Data</h3>
To visualize the device locations I used Google App Engine to serve stored data from Firebase and the Google Maps JavaScript API to create a simple web page that displays the results. The index.html page contains an empty &lt;div&gt; with id “map”. I initialized this &lt;div&gt; to contain the Google Map object. I also added “child_added” and “child_removed” event handlers to update the map as the data changes over time.<br />
<pre>function initMap() {
    // attach listeners
    firebase.database().ref('/visualization').on('child_added', function(data) {
        ...
        data.ref.on('child_added', function(vizData) {
            circles[vizData.key]= new CircleRoyale(map,
                                vizData.val().lat,
                                vizData.val().lng,
                                vizData.val().accuracy,
                                color);
          set_latest_position(data.key, vizData.val().lat, vizData.val().lng);
        });
        data.ref.on('child_removed', function(data) {
            circles[data.key].removeFromMap();
        });
    });
    // create the map
    map = new google.maps.Map(document.getElementById('map'), {
      center: get_next_device(),
      zoom: 20,
      scaleControl: true,
    });
    ...
}</pre>
Since the API returns not only a location but also an indication of accuracy, I’ve created a custom marker that has a pulsing radius to indicate the accuracy component. <br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><img height="359" src="https://lh3.googleusercontent.com/mwEs7P3LMkAHXjvvhi8R_bF2rV32R1TXsQe1ZmQLBnca-V5FgXnbRNPseaxFd6Y14TtRDWxS9mq90qCO87Ynp00cxGv7qWSf-_0pyj6nMnaVR20uQZgie00oRIgOBa3HbTWFhBAL" style="border: none; margin-left: auto; margin-right: auto; transform: rotate(0rad);" width="640" /></td></tr>
<tr><td class="tr-caption" style="text-align: center;">Two devices (red and blue) and their last five known positions</td></tr>
</tbody></table>
<div class="separator" style="clear: both; text-align: center;">
<span style="background-color: white; color: #212121; font-family: &quot;arial&quot;; font-size: 13.3333px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"></span></div>
<span id="docs-internal-guid-396aa1e6-1d71-f36d-fff8-21bebd29678a"></span><br />
<h3>
What’s next?</h3>
In this post I’ve outlined how you can build an IoT device that uses Google Maps Geolocation API to track any internet-connected device - from robotics to wearables. The App Engine processing module can be expanded to use other Google Maps APIs&nbsp;<a href="https://developers.google.com/maps/web-services/" >Web Services</a> providing geographic data such as <a href="https://developers.google.com/maps/documentation/directions/" >directions</a>, <a href="https://developers.google.com/maps/documentation/elevation/start" >elevation</a>, <a href="https://developers.google.com/places/web-service/" >place</a> or <a href="https://developers.google.com/maps/documentation/timezone/start" >time zone</a> information. Happy building!<br />
<br />
As an alternative, you can achieve a similar solution using Google Cloud Platform as a replacement for Firebase—<a href="https://cloud.google.com/solutions/scalable-geolocation-telemetry-system-using-maps-api#top_of_page" >this article</a> shows you how.<br />
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;">
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/J9CJgmBXfg81AdomnyX_aCbetiE1SHVGkGcHSZT6dVfRBX_dOQ7rhj8gmbR8mR8SYSZ-RcZS5VOFZTZAg4zYryTeFJydgxkt5SrKSYTkyKKIRfxaHTs1965c7UEpUkkFtcX5IeP7" style="border-radius: 50%; width: 80px;" /></div>
</td>  <td>About Ken:<i> Ken is a Lead on the Industry Solutions team. He works with customers to bring innovative solutions to market.</i></td></tr>
</tbody></table>
]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/geolocation-and-firebase-for-the-internet-of-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Address Geocoding in the Google Maps APIs</title>
		<link>https://googledata.org/google-maps/address-geocoding-in-the-google-maps-apis/</link>
		<comments>https://googledata.org/google-maps/address-geocoding-in-the-google-maps-apis/#comments</comments>
		<pubDate>Tue, 22 Nov 2016 23:43:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=81690be2e957d201ae29c25813978bd5</guid>
		<description><![CDATA[Forward Geocoding is the process of converting addresses (like a street address) into geographic coordinates (latitude and longitude), which you can use to place markers on a map or position the map. The Google Maps APIs have several services that you can use to convert addresses into coordinates - the <a href="https://developers.google.com/maps/documentation/geocoding/intro" target="_blank">Geocoding API</a>, the <a href="https://developers.google.com/places/web-service/autocomplete" target="_blank">Place Autocomplete service in Places API</a>, and the <a href="https://developers.google.com/places/web-service/search" target="_blank">Place Search service in Places API</a>. What are the differences between them and when should you use each one? Here&#8217;s where to start.<br /><br />
Note that while this blog focuses on the server-side Places and Geocoding APIs, these best practices also apply to the client-side Places and Geocoding services in the Google Maps JavaScript API.<br /><br /><h3>
Geocoding API</h3>
The <a href="https://developers.google.com/maps/documentation/geocoding/start" target="_blank">Geocoding API</a> is best for handling unambiguous queries: complete postal address strings (for example, &#8220;48 Pirrama Rd, Pyrmont, NSW, Australia&#8221;). Compared to other Google APIs, the Geocoding API provides the best quality matching of addresses globally for these types of complete, unambiguous queries. However, Geocoding API is not recommended if your application handles ambiguous or incomplete queries, such as &#8220;123 Main St&#8221;, or if it handles queries that may contain non-address information such as apartment numbers or business names.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><img alt="Screen Shot 2016-11-15 at 6.16.15 PM.png" height="280" src="https://lh5.googleusercontent.com/ZTYKHlcQxIHW4recbflhGGkxpxa38BIii5siPjO_7-dhR4Vf1D--gGX2ssu3DguTcUyZZptn_QqtARUE-bdfWjw1tRLsl23ohpxgBViEM5p-1WJ0v7NeoWuKZtYNLGpJxNpv10xq" width="602"></td></tr><tr><td>Geocoding API is best used for unambiguous complete addresses, such as "48 Pirrama Rd, Pyrmont, NSW, Australia"&#160;</td></tr></tbody></table><div>
<span></span></div>
<h3>
Places API</h3>
The <a href="https://developers.google.com/places/" target="_blank">Places API</a> allows users to discover both addresses and semantic locations, such as cafes or parks, by name or <a href="https://developers.google.com/places/supported_types" target="_blank">type</a>. In contrast to the Geocoding API, it handles ambiguous or incomplete requests in a more robust way. If your application handles user interaction, or addresses that are ambiguous or incomplete, consider the following services.<br /><h4>
<br />
Place Autocomplete service</h4>
For applications that respond in real time to user input, we recommend using the <a href="https://developers.google.com/places/web-service/autocomplete" target="_blank">Place Autocomplete service in the Places API</a>. This service is designed to return multiple possible addresses and allow the user to choose between them. The autocomplete lookup function can also be biased to return results specific to a location, enabling high quality results to be returned for incomplete queries such as &#8220;123 Main St&#8221;. Since the Place Autocomplete service is optimized for responding to user input, it also has very low latency, usually at least 10x lower than the Geocoding API. It&#8217;s also good at handling misspelled queries, or queries containing non-address information, since as the user types, they can see suggestions and correct their spelling if needed.<br /><br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><img alt="Screen Shot 2016-11-14 at 5.35.53 PM.png" height="284" src="https://lh6.googleusercontent.com/xtLpYrNIZ6qEQojbStjanO5rmt6JIbP9JqOFOQf7YvKzUK60NZeg597t7uIiR-b4TfVALbYF4eaNFtORO736wHQe4uq-9ibfiiJ1s8kXMDSLccABAt4oy7kiUeIo3dRBPP7Vosux" width="602"></td></tr><tr><td>Typing "123 Main St" into a Place Autocomplete search box lets the user choose from multiple results. Results can also be biased to prefer those near the area shown on the map or near the current user location</td></tr></tbody></table><h4>
Place Search service</h4>
The Place Autocomplete service relies on a user to choose the best option from multiple results. What if you have an application that handles ambiguous or incomplete queries in an automated fashion, with no user able to provide input?<br /><br />
For geocoding ambiguous or incomplete addresses in automated systems, when there is no user to select one of the autocomplete suggestions, we recommend the <a href="https://developers.google.com/places/web-service/search" target="_blank">Place Search service in Places API</a>. Place Search is better at coping with ambiguous queries than the Geocoding API, and lets you restrict your search to a specified area, or rank results by distance, allowing more precise filtering and ranking of results for ambiguous or incomplete queries. Place search is also more robust at responding to queries with additional non-address information such as business names or apartment numbers.<br /><br /><h2>
Future Changes to Geocoding API</h2>
We plan to roll out an update to the Geocoding API at the end of November 2016 that will increase the difference between Geocoding and Places performance for ambiguous and unambiguous queries. This change will improve the quality of Geocoding results for unambiguous queries, but will be more likely to return <span>ZERO_RESULTS</span> for ambiguous or incomplete queries where the Geocoding API was unable to find a high quality result. <br /><br />
If you are already using the above best practices, you should see an improvement in your Geocoding API results. If you are currently using the Geocoding API for incomplete or ambiguous queries, or for queries that may contain non-address information such as business names or apartment numbers, we recommend that you switch to the Places API instead, as it is likely to give better quality results for your use case.<br /><br />
You can try the new Geocoding service ahead of launch by adding an optional parameter, <span>new_forward_geocoder=true</span>, to your Geocoding API request. For example:<br /><br /><code>https://maps.googleapis.com/maps/api/geocode/json?new_forward_geocoder=true&#38;address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&#38;key=YOUR_API_KEY</code><br /><br />
If you want to try the new Geocoding service in the JavaScript Maps API Geocoding Service, you can set the new optional parameter <span>newForwardGeocoder: true</span> in the <span><a href="https://developers.google.com/maps/documentation/javascript/3.exp/reference#GeocoderRequest" target="_blank">GeocoderRequest</a></span> object. The new Geocoding service will launch for both the Geocoding API and the Geocoding Service in the JavaScript Maps API at the same time. All of the recommendations in this blog post apply to both the server-side and client-side APIs.<br /><br />
If you have any bug reports or feature requests for the new Geocoding service, please let us know using our public <a href="https://code.google.com/p/gmaps-api-issues/issues/entry?template=Geocoding%20API%20-%20Bug&#38;utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost" target="_blank">issue tracker</a>.<br /><br /><h2>
In Summary</h2>
The following table sums up when we recommend you use the Geocoding API, Place Autocomplete service and Place Search service.<br /><br /><div dir="ltr">
<table><tbody><tr><th><br /></th>            <th>Geocoding API</th>            <th>Place Search</th>            <th>Place Autocomplete</th>           </tr><tr><td>Scope</td>            <td>Addresses only</td>            <td colspan="2">Semantic locations and addresses, including businesses and points of interest</td>           </tr><tr><td>Strengths</td>            <td>Unambiguous complete addresses</td>                        <td>Ambiguous or incomplete addresses in automated systems</td>            <td>Responding to real-time user input</td>              </tr></tbody></table></div>
<br />
If your application does not yet follow these best practices, you may get worse results from Geocoding API in future, so we recommend you test how your application works with the new Geocoding service and update your application to use the above best practices if required. Try the upcoming Geocoding service by setting <span>new_forward_geocoder=true</span> in your geocoding request.<br /><br />
For more information on the <a href="https://developers.google.com/maps/documentation/geocoding/intro" target="_blank">Google Maps Geocoding API</a>, <a href="https://developers.google.com/places/web-service/autocomplete" target="_blank">Place Autocomplete in the Places API</a> and <a href="https://developers.google.com/places/web-service/search" target="_blank">Place Search in the Places API</a>, please see the developer documentation. Also see this more detailed <a href="https://developers.google.com/maps/documentation/geocoding/best-practices" target="_blank">best practices guide</a> in our documentation for more details on Geocoding best practices for various use cases, including minimizing latency when querying Directions API with addresses.<br /><br />
Finally, a big thank you to all the developers who use the Google Maps Geocoding API and provide feedback via the <a href="https://code.google.com/p/gmaps-api-issues/issues/entry?template=Geocoding%20API%20-%20Bug&#38;utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost" target="_blank">issue tracker</a>. Getting feedback from developers is vital for us to be able to keep improving our products, so if you have any bug reports or feature requests, please let us know!<br /><table><tbody><tr><td><br /><div>
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/mbzhN4UgcBZWGmNITagTVcFZZBsOqxRKXwzK6231tfvjiRMN0JwZYDL--z0X3qgQUmvW-e5c9qZwETINRrS4i1whh9LwqRcM27pTVPGhePv1WmWRxC3_twbglXD3wFXPshuSPnuT"></div>
</td>  <td><i>Posted by Elena Kelareva, Product Manager, Google Maps APIs</i></td></tr></tbody></table>]]></description>
				<content:encoded><![CDATA[Forward Geocoding is the process of converting addresses (like a street address) into geographic coordinates (latitude and longitude), which you can use to place markers on a map or position the map. The Google Maps APIs have several services that you can use to convert addresses into coordinates - the <a href="https://developers.google.com/maps/documentation/geocoding/intro" >Geocoding API</a>, the <a href="https://developers.google.com/places/web-service/autocomplete" >Place Autocomplete service in Places API</a>, and the <a href="https://developers.google.com/places/web-service/search" >Place Search service in Places API</a>. What are the differences between them and when should you use each one? Here’s where to start.<br />
<br />
Note that while this blog focuses on the server-side Places and Geocoding APIs, these best practices also apply to the client-side Places and Geocoding services in the Google Maps JavaScript API.<br />
<br />
<h3>
Geocoding API</h3>
The <a href="https://developers.google.com/maps/documentation/geocoding/start" >Geocoding API</a> is best for handling unambiguous queries: complete postal address strings (for example, “48 Pirrama Rd, Pyrmont, NSW, Australia”). Compared to other Google APIs, the Geocoding API provides the best quality matching of addresses globally for these types of complete, unambiguous queries. However, Geocoding API is not recommended if your application handles ambiguous or incomplete queries, such as “123 Main St”, or if it handles queries that may contain non-address information such as apartment numbers or business names.<br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><img alt="Screen Shot 2016-11-15 at 6.16.15 PM.png" height="280" src="https://lh5.googleusercontent.com/ZTYKHlcQxIHW4recbflhGGkxpxa38BIii5siPjO_7-dhR4Vf1D--gGX2ssu3DguTcUyZZptn_QqtARUE-bdfWjw1tRLsl23ohpxgBViEM5p-1WJ0v7NeoWuKZtYNLGpJxNpv10xq" style="border: none; margin-left: auto; margin-right: auto; transform: rotate(0rad);" width="602" /></td></tr>
<tr><td class="tr-caption" style="text-align: center;">Geocoding API is best used for unambiguous complete addresses, such as "48 Pirrama Rd, Pyrmont, NSW, Australia"&nbsp;</td></tr>
</tbody></table>
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: &quot;open sans&quot;; font-size: 13.3333px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"></span></div>
<h3>
Places API</h3>
The <a href="https://developers.google.com/places/" >Places API</a> allows users to discover both addresses and semantic locations, such as cafes or parks, by name or <a href="https://developers.google.com/places/supported_types" >type</a>. In contrast to the Geocoding API, it handles ambiguous or incomplete requests in a more robust way. If your application handles user interaction, or addresses that are ambiguous or incomplete, consider the following services.<br />
<h4>
<br />
Place Autocomplete service</h4>
For applications that respond in real time to user input, we recommend using the <a href="https://developers.google.com/places/web-service/autocomplete" >Place Autocomplete service in the Places API</a>. This service is designed to return multiple possible addresses and allow the user to choose between them. The autocomplete lookup function can also be biased to return results specific to a location, enabling high quality results to be returned for incomplete queries such as “123 Main St”. Since the Place Autocomplete service is optimized for responding to user input, it also has very low latency, usually at least 10x lower than the Geocoding API. It’s also good at handling misspelled queries, or queries containing non-address information, since as the user types, they can see suggestions and correct their spelling if needed.<br />
<br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><img alt="Screen Shot 2016-11-14 at 5.35.53 PM.png" height="284" src="https://lh6.googleusercontent.com/xtLpYrNIZ6qEQojbStjanO5rmt6JIbP9JqOFOQf7YvKzUK60NZeg597t7uIiR-b4TfVALbYF4eaNFtORO736wHQe4uq-9ibfiiJ1s8kXMDSLccABAt4oy7kiUeIo3dRBPP7Vosux" style="border: none; margin-left: auto; margin-right: auto; transform: rotate(0rad);" width="602" /></td></tr>
<tr><td class="tr-caption" style="text-align: center;">Typing "123 Main St" into a Place Autocomplete search box lets the user choose from multiple results. Results can also be biased to prefer those near the area shown on the map or near the current user location</td></tr>
</tbody></table>
<h4>
Place Search service</h4>
The Place Autocomplete service relies on a user to choose the best option from multiple results. What if you have an application that handles ambiguous or incomplete queries in an automated fashion, with no user able to provide input?<br />
<br />
For geocoding ambiguous or incomplete addresses in automated systems, when there is no user to select one of the autocomplete suggestions, we recommend the <a href="https://developers.google.com/places/web-service/search" >Place Search service in Places API</a>. Place Search is better at coping with ambiguous queries than the Geocoding API, and lets you restrict your search to a specified area, or rank results by distance, allowing more precise filtering and ranking of results for ambiguous or incomplete queries. Place search is also more robust at responding to queries with additional non-address information such as business names or apartment numbers.<br />
<br />
<h2>
Future Changes to Geocoding API</h2>
We plan to roll out an update to the Geocoding API at the end of November 2016 that will increase the difference between Geocoding and Places performance for ambiguous and unambiguous queries. This change will improve the quality of Geocoding results for unambiguous queries, but will be more likely to return <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">ZERO_RESULTS</span> for ambiguous or incomplete queries where the Geocoding API was unable to find a high quality result. <br />
<br />
If you are already using the above best practices, you should see an improvement in your Geocoding API results. If you are currently using the Geocoding API for incomplete or ambiguous queries, or for queries that may contain non-address information such as business names or apartment numbers, we recommend that you switch to the Places API instead, as it is likely to give better quality results for your use case.<br />
<br />
You can try the new Geocoding service ahead of launch by adding an optional parameter, <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">new_forward_geocoder=true</span>, to your Geocoding API request. For example:<br />
<br />
<code>https://maps.googleapis.com/maps/api/geocode/json?new_forward_geocoder=true&amp;address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&amp;key=YOUR_API_KEY</code><br />
<br />
If you want to try the new Geocoding service in the JavaScript Maps API Geocoding Service, you can set the new optional parameter <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">newForwardGeocoder: true</span> in the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/maps/documentation/javascript/3.exp/reference#GeocoderRequest" >GeocoderRequest</a></span> object. The new Geocoding service will launch for both the Geocoding API and the Geocoding Service in the JavaScript Maps API at the same time. All of the recommendations in this blog post apply to both the server-side and client-side APIs.<br />
<br />
If you have any bug reports or feature requests for the new Geocoding service, please let us know using our public <a href="https://code.google.com/p/gmaps-api-issues/issues/entry?template=Geocoding%20API%20-%20Bug&amp;utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost" >issue tracker</a>.<br />
<br />
<h2>
In Summary</h2>
The following table sums up when we recommend you use the Geocoding API, Place Autocomplete service and Place Search service.<br />
<br />
<div dir="ltr" style="margin-left: 0pt;">
<table style="border-collapse: collapse; border: 1px solid #000; width: 650px;"><tbody>
<tr style="border: 1px solid #000;">            <th style="border: 1px solid #000; padding: 4px; width: 13%;"><br /></th>            <th style="border: 1px solid #000; padding: 4px; width: 29%;">Geocoding API</th>            <th style="border: 1px solid #000; padding: 4px; width: 29%;">Place Search</th>            <th style="border: 1px solid #000; padding: 4px;">Place Autocomplete</th>           </tr>
<tr style="border: 1px solid #000;">            <td style="border: 1px solid #000; font-weight: bold; padding: 4px;">Scope</td>            <td style="border: 1px solid #000; padding: 4px;">Addresses only</td>            <td colspan="2" style="border: 1px solid #000; padding: 4px;">Semantic locations and addresses, including businesses and points of interest</td>           </tr>
<tr style="border: 1px solid #000;">            <td style="border: 1px solid #000; font-weight: bold; padding: 4px;">Strengths</td>            <td style="border: 1px solid #000; padding: 4px;">Unambiguous complete addresses</td>                        <td style="border: 1px solid #000; padding: 4px;">Ambiguous or incomplete addresses in automated systems</td>            <td style="border: 1px solid #000; padding: 4px;">Responding to real-time user input</td>              </tr>
</tbody></table>
</div>
<br />
If your application does not yet follow these best practices, you may get worse results from Geocoding API in future, so we recommend you test how your application works with the new Geocoding service and update your application to use the above best practices if required. Try the upcoming Geocoding service by setting <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">new_forward_geocoder=true</span> in your geocoding request.<br />
<br />
For more information on the <a href="https://developers.google.com/maps/documentation/geocoding/intro" >Google Maps Geocoding API</a>, <a href="https://developers.google.com/places/web-service/autocomplete" >Place Autocomplete in the Places API</a> and <a href="https://developers.google.com/places/web-service/search" >Place Search in the Places API</a>, please see the developer documentation. Also see this more detailed <a href="https://developers.google.com/maps/documentation/geocoding/best-practices" >best practices guide</a> in our documentation for more details on Geocoding best practices for various use cases, including minimizing latency when querying Directions API with addresses.<br />
<br />
Finally, a big thank you to all the developers who use the Google Maps Geocoding API and provide feedback via the <a href="https://code.google.com/p/gmaps-api-issues/issues/entry?template=Geocoding%20API%20-%20Bug&amp;utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost" >issue tracker</a>. Getting feedback from developers is vital for us to be able to keep improving our products, so if you have any bug reports or feature requests, please let us know!<br />
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;">
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/mbzhN4UgcBZWGmNITagTVcFZZBsOqxRKXwzK6231tfvjiRMN0JwZYDL--z0X3qgQUmvW-e5c9qZwETINRrS4i1whh9LwqRcM27pTVPGhePv1WmWRxC3_twbglXD3wFXPshuSPnuT" style="border-radius: 50%; width: 80px;" /></div>
</td>  <td><i>Posted by Elena Kelareva, Product Manager, Google Maps APIs</i></td></tr>
</tbody></table>
]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/address-geocoding-in-the-google-maps-apis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Smart scrolling comes to mobile web maps</title>
		<link>https://googledata.org/google-maps/smart-scrolling-comes-to-mobile-web-maps/</link>
		<comments>https://googledata.org/google-maps/smart-scrolling-comes-to-mobile-web-maps/#comments</comments>
		<pubDate>Wed, 16 Nov 2016 00:23:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=3d0bd0c7ddf67a2d245dfb938dd9a88b</guid>
		<description><![CDATA[If you&#8217;re building a website today, your users are more likely to view it on a mobile device than on a desktop or laptop. Google has plenty of resources to help developers make their websites stand out on mobile, from a <a href="https://developers.google.com/webmasters/mobile-sites/" target="_blank">guide to building mobile-friendly websites</a>, to a <a href="https://www.google.com/webmasters/tools/mobile-friendly/" target="_blank">mobile-friendly testing tool</a>, to promoting new mobile web technologies such as <a href="https://www.ampproject.org/" target="_blank">Accelerated Mobile Pages</a> and <a href="https://developers.google.com/web/progressive-web-apps/" target="_blank">Progressive Web Apps</a>.<br /><div><span><img alt="bullheadN5D91Lstephenmcd11092016101027.gif" height="400" src="https://lh4.googleusercontent.com/uyDwFMVDIv4RKrh4H-Q5LHce7uLvypuemiL550bh61ghfnydiiwRiJaJCAxJ6HBkvgowSRoLLaqKeh1VN_3VetpWl10KEKtAq56EtZvfjPf25BgXXwK_taS8xB0vocXraN1sSfQv" width="200"></span></div><span></span><br />
Mobile web users often get frustrated when trying to scroll the page, but an embedded map captures their swipe and pans the map instead. This can even lead to users getting stuck on the map and having to reload the page in order to get back to the rest of the page.  <br /><br />
Today we're introducing intuitive scrolling for sites with embedded maps and making the full-screen control visible by default on mobile devices. This should give your users a more intuitive and less frustrating map interaction experience on mobile browsers.<br /><br /><h4>The map trap</h4>We have added a new <span>gestureHandling</span> option to the Google Maps JavaScript API. This setting controls how touch gestures* on the map are handled.<br /><br />
Values:<br /><ul><li>"cooperative": Two-finger touch gestures pan and zoom the map, as do all mouse gestures. One-finger touch gestures are ignored by the map. In this mode, the map cooperates with the page, so that one-finger touch gestures can pan the page.</li>
<li>"greedy": All touch gestures pan or zoom the map. This was the previous behaviour.</li>
<li>"none": The map cannot be panned or zoomed by user gestures.</li>
<li>"auto": Gesture handling is automatically set to either cooperative or greedy, depending on whether the page is scrollable or not (defined by a comparison of the page body dimensions and the window dimensions).</li>
<li>If the page is scrollable, &#8220;auto&#8221; sets the gesture handling mode to cooperative.</li>
<li>If the page is not scrollable, &#8220;auto&#8221; sets the gesture handling to greedy.</li>
<li>If the map is in an iFrame, &#8220;auto&#8221; sets the gesture handling to cooperative because the API can&#8217;t determine whether the page is scrollable.</li>
</ul>*<i>Note that there is currently no way to change the gesture handling mode for Street View; these options only affect the way gestures are handled by the map. If you&#8217;d like to see this extended to Street View in future, please let us know on our public <a href="https://code.google.com/p/gmaps-api-issues/?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost" target="_blank">issue tracker</a>.</i><br /><ul></ul>You can enable any of these four gesture handling modes by adding the corresponding field to the <span>MapOptions</span> object. For example:<br /><br /><blockquote>map = new google.maps.Map(document.getElementById('map-div'), {<br />
gestureHandling: 'cooperative',<br />
center: {lat: -34.397, lng: 150.644},<br />
zoom: 8<br />
});</blockquote><br />
If the <span>gestureHandling</span> option is not set, the default value is <span>auto</span>, since that automatically chooses what we expect to be the best behavior based on what the browser can detect about the placement of your map in the page. If you prefer to always use the old map gesture handling mode for users viewing your site on mobile devices, change the value of <span>gestureHandling</span> to <span>greedy</span>, which sends all user gestures to the map.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://2.bp.blogspot.com/-MSbC14vWMtI/WCuEUoAK7CI/AAAAAAAAAjo/UgCnPhHizrQaBjqygtdm2KfhIVVGMSjfQCLcB/s1600/scroll_lock.png"><img border="0" height="400" src="https://2.bp.blogspot.com/-MSbC14vWMtI/WCuEUoAK7CI/AAAAAAAAAjo/UgCnPhHizrQaBjqygtdm2KfhIVVGMSjfQCLcB/s400/scroll_lock.png" width="322"></a></td></tr><tr><td>Maps viewed within a scrollable website on a mobile device will display this overlay on touch</td></tr></tbody></table>The <span>option draggable: false</span> has now been superseded by <span>gestureHandling: 'none'</span>. The old option <span>draggable</span> is now deprecated, but we&#8217;ll maintain backwards compatibility. Developers who previously turned off map interaction by setting <span>draggable</span> to <span>false</span> will keep their existing non-interactive maps.<br /><br /><h4>Maximizing the map when you need it</h4>Many users in our user studies said they found small embedded maps on mobile devices hard to interact with and they preferred to interact with a larger map. To address this request, we've made the fullscreen control visible by default on mobile devices. The fullscreen control allows the user to make the map larger. When the map is in fullscreen mode, the user can pan the map using one finger. As a developer, you can enable or disable fullscreen control, by setting the <span>fullscreenControl</span> option to <span>true</span> or <span>false</span> in the <span>MapOptions</span> object. When the map is in fullscreen mode, one finger will always pan the map, since there is no surrounding page to pan.<br /><br />
The default setting of <span>fullscreenControl</span> is <span>true</span> on mobile browsers, and <span>false</span> on desktop browsers, since the problem of maps being too small for interaction usually only occurs on mobile devices.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><img alt="ScrollLockScreenshot.png" height="368" src="https://lh3.googleusercontent.com/8HW2ZyCeJ1eF1-WSyesNN0OmZY55GpUidiVUkqtw2mmGyuXs3DE7kFTqVgurd-0SYIffgBmBrDEBCNDDKylOGjy-tnvBYaliU9eWjGBfnjWnIQ07k5jeH25bleeg1TI1yYzsWa_a" width="349"></td></tr><tr><td>The fullscreen control allows the user to make the map larger for easier interaction</td></tr></tbody></table><div><span></span></div>View this <a href="https://developers.google.com/maps/documentation/javascript/interaction" target="_blank">demo</a> on a mobile device to see how the fullscreen button and <span>cooperative</span> gesture handling mode (or <span>auto</span> gesture handling mode on a scrollable site) will look to your users.<span></span><br /><br />
For more information on the Google Maps JavaScript API, please see the <a href="https://developers.google.com/maps/documentation/javascript/interaction" target="_blank">developer documentation</a> or review the latest <a href="https://developers.google.com/maps/documentation/javascript/releases" target="_blank">release notes</a>.<br /><br />
A big thank you to all the developers who use the Google Maps JavaScript API and provide feedback via the <a href="https://code.google.com/p/gmaps-api-issues/?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost" target="_blank">issue tracker</a>. Getting feedback from developers is vital for us to be able to keep improving our products, so if you have any bug reports or feature requests, please let us know.<br /><table><tbody><tr><td><br /><div><img alt="author image" border="0" src="https://lh6.googleusercontent.com/mbzhN4UgcBZWGmNITagTVcFZZBsOqxRKXwzK6231tfvjiRMN0JwZYDL--z0X3qgQUmvW-e5c9qZwETINRrS4i1whh9LwqRcM27pTVPGhePv1WmWRxC3_twbglXD3wFXPshuSPnuT"></div></td>  <td><i>Posted by Elena Kelareva, Product Manager, Google Maps APIs</i></td></tr></tbody></table><br />]]></description>
				<content:encoded><![CDATA[If you’re building a website today, your users are more likely to view it on a mobile device than on a desktop or laptop. Google has plenty of resources to help developers make their websites stand out on mobile, from a <a href="https://developers.google.com/webmasters/mobile-sites/" >guide to building mobile-friendly websites</a>, to a <a href="https://www.google.com/webmasters/tools/mobile-friendly/" >mobile-friendly testing tool</a>, to promoting new mobile web technologies such as <a href="https://www.ampproject.org/" >Accelerated Mobile Pages</a> and <a href="https://developers.google.com/web/progressive-web-apps/" >Progressive Web Apps</a>.<br />
<div class="separator" style="clear: both; text-align: center;"><span style="color: #444444; font-family: &quot;arial&quot;; font-size: 13.3333px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="bullheadN5D91Lstephenmcd11092016101027.gif" height="400" src="https://lh4.googleusercontent.com/uyDwFMVDIv4RKrh4H-Q5LHce7uLvypuemiL550bh61ghfnydiiwRiJaJCAxJ6HBkvgowSRoLLaqKeh1VN_3VetpWl10KEKtAq56EtZvfjPf25BgXXwK_taS8xB0vocXraN1sSfQv" style="border: none; transform: rotate(0rad);" width="200" /></span></div><span id="docs-internal-guid-cb32e455-69e3-39a3-ba64-c31e73b8cbc2"></span><br />
Mobile web users often get frustrated when trying to scroll the page, but an embedded map captures their swipe and pans the map instead. This can even lead to users getting stuck on the map and having to reload the page in order to get back to the rest of the page.  <br />
<br />
Today we're introducing intuitive scrolling for sites with embedded maps and making the full-screen control visible by default on mobile devices. This should give your users a more intuitive and less frustrating map interaction experience on mobile browsers.<br />
<br />
<h4>The map trap</h4>We have added a new <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">gestureHandling</span> option to the Google Maps JavaScript API. This setting controls how touch gestures* on the map are handled.<br />
<br />
Values:<br />
<ul><li>"cooperative": Two-finger touch gestures pan and zoom the map, as do all mouse gestures. One-finger touch gestures are ignored by the map. In this mode, the map cooperates with the page, so that one-finger touch gestures can pan the page.</li>
<li>"greedy": All touch gestures pan or zoom the map. This was the previous behaviour.</li>
<li>"none": The map cannot be panned or zoomed by user gestures.</li>
<li>"auto": Gesture handling is automatically set to either cooperative or greedy, depending on whether the page is scrollable or not (defined by a comparison of the page body dimensions and the window dimensions).</li>
<li style="margin-left: 20px;">If the page is scrollable, “auto” sets the gesture handling mode to cooperative.</li>
<li style="margin-left: 20px;">If the page is not scrollable, “auto” sets the gesture handling to greedy.</li>
<li style="margin-left: 20px;">If the map is in an iFrame, “auto” sets the gesture handling to cooperative because the API can’t determine whether the page is scrollable.</li>
</ul>*<i>Note that there is currently no way to change the gesture handling mode for Street View; these options only affect the way gestures are handled by the map. If you’d like to see this extended to Street View in future, please let us know on our public <a href="https://code.google.com/p/gmaps-api-issues/?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost" >issue tracker</a>.</i><br />
<ul></ul>You can enable any of these four gesture handling modes by adding the corresponding field to the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">MapOptions</span> object. For example:<br />
<br />
<blockquote class="tr_bq" style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">map = new google.maps.Map(document.getElementById('map-div'), {<br />
gestureHandling: 'cooperative',<br />
center: {lat: -34.397, lng: 150.644},<br />
zoom: 8<br />
});</blockquote><br />
If the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">gestureHandling</span> option is not set, the default value is <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">auto</span>, since that automatically chooses what we expect to be the best behavior based on what the browser can detect about the placement of your map in the page. If you prefer to always use the old map gesture handling mode for users viewing your site on mobile devices, change the value of <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">gestureHandling</span> to <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">greedy</span>, which sends all user gestures to the map.<br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><a href="https://2.bp.blogspot.com/-MSbC14vWMtI/WCuEUoAK7CI/AAAAAAAAAjo/UgCnPhHizrQaBjqygtdm2KfhIVVGMSjfQCLcB/s1600/scroll_lock.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="400" src="https://2.bp.blogspot.com/-MSbC14vWMtI/WCuEUoAK7CI/AAAAAAAAAjo/UgCnPhHizrQaBjqygtdm2KfhIVVGMSjfQCLcB/s400/scroll_lock.png" width="322" /></a></td></tr>
<tr><td class="tr-caption" style="text-align: center;">Maps viewed within a scrollable website on a mobile device will display this overlay on touch</td></tr>
</tbody></table>The <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">option draggable: false</span> has now been superseded by <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">gestureHandling: 'none'</span>. The old option <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">draggable</span> is now deprecated, but we’ll maintain backwards compatibility. Developers who previously turned off map interaction by setting <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">draggable</span> to <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">false</span> will keep their existing non-interactive maps.<br />
<br />
<h4>Maximizing the map when you need it</h4>Many users in our user studies said they found small embedded maps on mobile devices hard to interact with and they preferred to interact with a larger map. To address this request, we've made the fullscreen control visible by default on mobile devices. The fullscreen control allows the user to make the map larger. When the map is in fullscreen mode, the user can pan the map using one finger. As a developer, you can enable or disable fullscreen control, by setting the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">fullscreenControl</span> option to <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">true</span> or <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">false</span> in the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">MapOptions</span> object. When the map is in fullscreen mode, one finger will always pan the map, since there is no surrounding page to pan.<br />
<br />
The default setting of <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">fullscreenControl</span> is <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">true</span> on mobile browsers, and <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">false</span> on desktop browsers, since the problem of maps being too small for interaction usually only occurs on mobile devices.<br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><img alt="ScrollLockScreenshot.png" height="368" src="https://lh3.googleusercontent.com/8HW2ZyCeJ1eF1-WSyesNN0OmZY55GpUidiVUkqtw2mmGyuXs3DE7kFTqVgurd-0SYIffgBmBrDEBCNDDKylOGjy-tnvBYaliU9eWjGBfnjWnIQ07k5jeH25bleeg1TI1yYzsWa_a" style="border: none; margin-left: auto; margin-right: auto; transform: rotate(0rad);" width="349" /></td></tr>
<tr><td class="tr-caption" style="text-align: center;">The fullscreen control allows the user to make the map larger for easier interaction</td></tr>
</tbody></table><div class="separator" style="clear: both; text-align: center;"><span style="color: #444444; font-family: &quot;arial&quot;; font-size: 13.3333px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"></span></div>View this <a href="https://developers.google.com/maps/documentation/javascript/interaction" >demo</a> on a mobile device to see how the fullscreen button and <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">cooperative</span> gesture handling mode (or <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">auto</span> gesture handling mode on a scrollable site) will look to your users.<span id="docs-internal-guid-cb32e455-69e4-a6f8-c34d-49d5af231eba"></span><br />
<br />
For more information on the Google Maps JavaScript API, please see the <a href="https://developers.google.com/maps/documentation/javascript/interaction" >developer documentation</a> or review the latest <a href="https://developers.google.com/maps/documentation/javascript/releases" >release notes</a>.<br />
<br />
A big thank you to all the developers who use the Google Maps JavaScript API and provide feedback via the <a href="https://code.google.com/p/gmaps-api-issues/?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost" >issue tracker</a>. Getting feedback from developers is vital for us to be able to keep improving our products, so if you have any bug reports or feature requests, please let us know.<br />
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;"><img alt="author image" border="0" src="https://lh6.googleusercontent.com/mbzhN4UgcBZWGmNITagTVcFZZBsOqxRKXwzK6231tfvjiRMN0JwZYDL--z0X3qgQUmvW-e5c9qZwETINRrS4i1whh9LwqRcM27pTVPGhePv1WmWRxC3_twbglXD3wFXPshuSPnuT" style="border-radius: 50%; width: 80px;" /></div></td>  <td><i>Posted by Elena Kelareva, Product Manager, Google Maps APIs</i></td></tr>
</tbody></table><br />
]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/smart-scrolling-comes-to-mobile-web-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Key Improvements for Your Maps API Experience</title>
		<link>https://googledata.org/google-maps/key-improvements-for-your-maps-api-experience/</link>
		<comments>https://googledata.org/google-maps/key-improvements-for-your-maps-api-experience/#comments</comments>
		<pubDate>Tue, 04 Oct 2016 20:31:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=9870fc60c50246ed836158d1c27a8b6e</guid>
		<description><![CDATA[<em>Originally posted on the <a href="https://developers.googleblog.com/2016/10/key-improvements-for-your-api-experience.html">Google Developers blog</a>.</em><br />
Posted by Israel Shalom, Product Manager<br /><br />
Here at Google, we&#8217;re serving more than a hundred APIs to ensure that developers have the resources to build amazing experiences with them. We provide a reliable infrastructure and make it as simple as possible so developers can focus on building the future. With this in mind, we&#8217;re introducing a few improvements for the API experience: more flexible keys, a streamlined 'getting-started' experience, and easy monitoring.<br /><br /><h2>
Faster, more flexible key generation</h2>
Keys are a standard way for APIs to identify callers, and one of the very first steps in interacting with a Google API. Tens of thousands of keys are created every day for Google APIs, so we&#8217;re making this step simpler -- reducing the old multi-step process with a single click:<br /><br /><div>
<a href="https://3.bp.blogspot.com/-PiplwceluOw/V_QQDUd3Q5I/AAAAAAAAAi8/Hhlby8j2VXYMsMNvHUbsMdqOPqu16af-QCLcB/s1600/image00.png"><img border="0" height="393" src="https://3.bp.blogspot.com/-PiplwceluOw/V_QQDUd3Q5I/AAAAAAAAAi8/Hhlby8j2VXYMsMNvHUbsMdqOPqu16af-QCLcB/s1600/image00.png" width="640"></a></div>
<div>
<a href="https://2.bp.blogspot.com/-EMwpqndQPr0/V_QQDS_qT3I/AAAAAAAAAi0/5NkA3dxQW185LRJbrs_hWe3tOeVnZZI2ACEw/s1600/image01.png"><img border="0" height="348" src="https://2.bp.blogspot.com/-EMwpqndQPr0/V_QQDS_qT3I/AAAAAAAAAi0/5NkA3dxQW185LRJbrs_hWe3tOeVnZZI2ACEw/s640/image01.png" width="640"></a></div>
<br />
You no longer need to choose your platform and various other restrictions at the time of creation, but we still encourage <a href="https://support.google.com/googleapi/answer/6310037" target="_blank">scope management</a> as a best practice:<br /><div>
<a href="https://2.bp.blogspot.com/-j9PNS8OXJeI/V_QQDZIbgEI/AAAAAAAAAi4/bQKlJYSbGmsVadvdm4VeBqr-tIWTHscJQCEw/s1600/image02.png"><img border="0" height="394" src="https://2.bp.blogspot.com/-j9PNS8OXJeI/V_QQDZIbgEI/AAAAAAAAAi4/bQKlJYSbGmsVadvdm4VeBqr-tIWTHscJQCEw/s640/image02.png" width="640"></a></div>
<h2>
Streamlined getting started flow</h2>
We realize that many developers want to get straight to creation and don&#8217;t necessarily want to step into the console. We&#8217;ve just introduced an in-flow credential set up procedure directly embedded within the developer documentation:<br /><br /><div>
<a href="https://4.bp.blogspot.com/-tjvfXqGBITU/V_QQDukglsI/AAAAAAAAAjE/TWIdXKSXYVMygo8jdG1uzzjDO2ttkn8IgCEw/s1600/image03.png"><img border="0" height="348" src="https://4.bp.blogspot.com/-tjvfXqGBITU/V_QQDukglsI/AAAAAAAAAjE/TWIdXKSXYVMygo8jdG1uzzjDO2ttkn8IgCEw/s640/image03.png" width="640"></a></div>
Click the 'Get a Key' button, choose or create a project, and then let us take care of enabling the API and creating a key.<br /><div>
<a href="https://1.bp.blogspot.com/-0xPgSsjhBKY/V_QQDpPnMzI/AAAAAAAAAjI/5_-PFoAIitoHKjSfbNydwhJbJNUUczg-gCEw/s1600/image04.png"><img border="0" height="348" src="https://1.bp.blogspot.com/-0xPgSsjhBKY/V_QQDpPnMzI/AAAAAAAAAjI/5_-PFoAIitoHKjSfbNydwhJbJNUUczg-gCEw/s640/image04.png" width="640"></a></div>
<div>
<a href="https://3.bp.blogspot.com/-1cghGvn22H8/V_QQDvlTTnI/AAAAAAAAAjA/hzLWCEVazg8UbZcWy072TjArL4pcEBtMwCEw/s1600/image05.png"><img border="0" height="348" src="https://3.bp.blogspot.com/-1cghGvn22H8/V_QQDvlTTnI/AAAAAAAAAjA/hzLWCEVazg8UbZcWy072TjArL4pcEBtMwCEw/s640/image05.png" width="640"></a></div>
We are currently rolling this out for the Google Maps APIs and over the next few months we'll bring it to the rest of our documentation.<br /><h2>
API Dashboard</h2>
We&#8217;re not just making it easier to get started, we&#8217;re simplifying the on-going usage experience, too. For developers who use one or more APIs frequently, we've built the new <a href="http://console.developers.google.com/apis/dashboard">API Dashboard</a> to easily view usage and quotas.<br /><br />
If you&#8217;ve enabled any APIs, the dashboard is front and center in the API Console. There you can view all the APIs you&#8217;re using along with usage, error and latency data:<br /><br /><div>
<a href="https://2.bp.blogspot.com/-NizNL1ObTEo/V_QQD6W5bgI/AAAAAAAAAjM/i7YGszmnwEwYu0UXI8vzKTuQhi9vHmLSQCEw/s1600/image06.png"><img border="0" height="348" src="https://2.bp.blogspot.com/-NizNL1ObTEo/V_QQD6W5bgI/AAAAAAAAAjM/i7YGszmnwEwYu0UXI8vzKTuQhi9vHmLSQCEw/s640/image06.png" width="640"></a></div>
<br />
Clicking on an API will jump to a detailed report, where you&#8217;ll see the traffic sliced by methods, credentials, versions and response code (available on select APIs):<br /><div>
<a href="https://2.bp.blogspot.com/-MAfBT4sty8I/V_QQD-tJcCI/AAAAAAAAAjQ/_OnHBY7HbDEpx582uEczZ8B3QsjD4zlsgCEw/s1600/image07.png"><img border="0" height="346" src="https://2.bp.blogspot.com/-MAfBT4sty8I/V_QQD-tJcCI/AAAAAAAAAjQ/_OnHBY7HbDEpx582uEczZ8B3QsjD4zlsgCEw/s640/image07.png" width="640"></a></div>
<br /><br />
We hope these new features make your API usage easier, and we can't wait to see what you&#8217;re going to build next!]]></description>
				<content:encoded><![CDATA[<em>Originally posted on the <a href="https://developers.googleblog.com/2016/10/key-improvements-for-your-api-experience.html">Google Developers blog</a>.</em><br />
Posted by Israel Shalom, Product Manager<br />
<br />
Here at Google, we’re serving more than a hundred APIs to ensure that developers have the resources to build amazing experiences with them. We provide a reliable infrastructure and make it as simple as possible so developers can focus on building the future. With this in mind, we’re introducing a few improvements for the API experience: more flexible keys, a streamlined 'getting-started' experience, and easy monitoring.<br />
<br />
<h2>
Faster, more flexible key generation</h2>
Keys are a standard way for APIs to identify callers, and one of the very first steps in interacting with a Google API. Tens of thousands of keys are created every day for Google APIs, so we’re making this step simpler -- reducing the old multi-step process with a single click:<br />
<br />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://3.bp.blogspot.com/-PiplwceluOw/V_QQDUd3Q5I/AAAAAAAAAi8/Hhlby8j2VXYMsMNvHUbsMdqOPqu16af-QCLcB/s1600/image00.png" imageanchor="1"><img border="0" height="393" src="https://3.bp.blogspot.com/-PiplwceluOw/V_QQDUd3Q5I/AAAAAAAAAi8/Hhlby8j2VXYMsMNvHUbsMdqOPqu16af-QCLcB/s1600/image00.png" width="640" /></a></div>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://2.bp.blogspot.com/-EMwpqndQPr0/V_QQDS_qT3I/AAAAAAAAAi0/5NkA3dxQW185LRJbrs_hWe3tOeVnZZI2ACEw/s1600/image01.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="348" src="https://2.bp.blogspot.com/-EMwpqndQPr0/V_QQDS_qT3I/AAAAAAAAAi0/5NkA3dxQW185LRJbrs_hWe3tOeVnZZI2ACEw/s640/image01.png" width="640" /></a></div>
<br />
You no longer need to choose your platform and various other restrictions at the time of creation, but we still encourage <a href="https://support.google.com/googleapi/answer/6310037" >scope management</a> as a best practice:<br />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://2.bp.blogspot.com/-j9PNS8OXJeI/V_QQDZIbgEI/AAAAAAAAAi4/bQKlJYSbGmsVadvdm4VeBqr-tIWTHscJQCEw/s1600/image02.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="394" src="https://2.bp.blogspot.com/-j9PNS8OXJeI/V_QQDZIbgEI/AAAAAAAAAi4/bQKlJYSbGmsVadvdm4VeBqr-tIWTHscJQCEw/s640/image02.png" width="640" /></a></div>
<h2>
Streamlined getting started flow</h2>
We realize that many developers want to get straight to creation and don’t necessarily want to step into the console. We’ve just introduced an in-flow credential set up procedure directly embedded within the developer documentation:<br />
<br />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://4.bp.blogspot.com/-tjvfXqGBITU/V_QQDukglsI/AAAAAAAAAjE/TWIdXKSXYVMygo8jdG1uzzjDO2ttkn8IgCEw/s1600/image03.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="348" src="https://4.bp.blogspot.com/-tjvfXqGBITU/V_QQDukglsI/AAAAAAAAAjE/TWIdXKSXYVMygo8jdG1uzzjDO2ttkn8IgCEw/s640/image03.png" width="640" /></a></div>
Click the 'Get a Key' button, choose or create a project, and then let us take care of enabling the API and creating a key.<br />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-0xPgSsjhBKY/V_QQDpPnMzI/AAAAAAAAAjI/5_-PFoAIitoHKjSfbNydwhJbJNUUczg-gCEw/s1600/image04.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="348" src="https://1.bp.blogspot.com/-0xPgSsjhBKY/V_QQDpPnMzI/AAAAAAAAAjI/5_-PFoAIitoHKjSfbNydwhJbJNUUczg-gCEw/s640/image04.png" width="640" /></a></div>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://3.bp.blogspot.com/-1cghGvn22H8/V_QQDvlTTnI/AAAAAAAAAjA/hzLWCEVazg8UbZcWy072TjArL4pcEBtMwCEw/s1600/image05.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="348" src="https://3.bp.blogspot.com/-1cghGvn22H8/V_QQDvlTTnI/AAAAAAAAAjA/hzLWCEVazg8UbZcWy072TjArL4pcEBtMwCEw/s640/image05.png" width="640" /></a></div>
We are currently rolling this out for the Google Maps APIs and over the next few months we'll bring it to the rest of our documentation.<br />
<h2>
API Dashboard</h2>
We’re not just making it easier to get started, we’re simplifying the on-going usage experience, too. For developers who use one or more APIs frequently, we've built the new <a href="http://console.developers.google.com/apis/dashboard">API Dashboard</a> to easily view usage and quotas.<br />
<br />
If you’ve enabled any APIs, the dashboard is front and center in the API Console. There you can view all the APIs you’re using along with usage, error and latency data:<br />
<br />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://2.bp.blogspot.com/-NizNL1ObTEo/V_QQD6W5bgI/AAAAAAAAAjM/i7YGszmnwEwYu0UXI8vzKTuQhi9vHmLSQCEw/s1600/image06.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="348" src="https://2.bp.blogspot.com/-NizNL1ObTEo/V_QQD6W5bgI/AAAAAAAAAjM/i7YGszmnwEwYu0UXI8vzKTuQhi9vHmLSQCEw/s640/image06.png" width="640" /></a></div>
<br />
Clicking on an API will jump to a detailed report, where you’ll see the traffic sliced by methods, credentials, versions and response code (available on select APIs):<br />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://2.bp.blogspot.com/-MAfBT4sty8I/V_QQD-tJcCI/AAAAAAAAAjQ/_OnHBY7HbDEpx582uEczZ8B3QsjD4zlsgCEw/s1600/image07.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="346" src="https://2.bp.blogspot.com/-MAfBT4sty8I/V_QQD-tJcCI/AAAAAAAAAjQ/_OnHBY7HbDEpx582uEczZ8B3QsjD4zlsgCEw/s640/image07.png" width="640" /></a></div>
<br />
<br />
We hope these new features make your API usage easier, and we can't wait to see what you’re going to build next!]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/key-improvements-for-your-maps-api-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Try these new Google Maps voice commands on your next road trip</title>
		<link>https://googledata.org/google-earth/try-these-new-google-maps-voice-commands-on-your-next-road-trip/</link>
		<comments>https://googledata.org/google-earth/try-these-new-google-maps-voice-commands-on-your-next-road-trip/#comments</comments>
		<pubDate>Thu, 29 Sep 2016 13:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=9f066dd0da7b23b6156850479a029783</guid>
		<description><![CDATA[As we approach the end of the year, many travelers will set out on holiday road trips to visit family and friends, near and far. Whether you&#8217;re driving solo, or don&#8217;t want to assign navigator duties to your passengers, it just got easier to get around while keeping your eyes on the road with new voice commands that are simpler than ever to use.<br /><br />For the ultimate hands-free and eyes-free experience, first make sure you&#8217;ve got the latest versions of the Google Maps app and Google app for Android. Then, the next time you enter navigation mode or <a href="https://maps.googleblog.com/2016/01/do-i-stay-or-do-i-go-now-google-maps.html">driving mode</a>, you can simply say &#8220;Ok Google&#8221; followed by a voice command, without needing to tap or even look at the screen. You&#8217;ll always know when voice commands can be used in Google Maps by looking for a white microphone icon in the top right corner.<br /><br /><div><a href="https://3.bp.blogspot.com/-7XD6tREPQQk/V-xSZbVn0KI/AAAAAAAAE9U/F9WQNFV4R3gzGVHW0kRBUZ3KcpdeAoYpgCLcB/s1600/GuidedNavigation%2B%25281%2529.png"><img border="0" height="400" src="https://3.bp.blogspot.com/-7XD6tREPQQk/V-xSZbVn0KI/AAAAAAAAE9U/F9WQNFV4R3gzGVHW0kRBUZ3KcpdeAoYpgCLcB/s400/GuidedNavigation%2B%25281%2529.png" width="223"></a><a href="https://3.bp.blogspot.com/-JaFuS21pcxM/V-xSZca6GzI/AAAAAAAAE9Q/fBpngWJP50oklKgWhv5KzQ8Il4qmWHW3QCLcB/s1600/SmartDrive.png"><img border="0" height="400" src="https://3.bp.blogspot.com/-JaFuS21pcxM/V-xSZca6GzI/AAAAAAAAE9Q/fBpngWJP50oklKgWhv5KzQ8Il4qmWHW3QCLcB/s400/SmartDrive.png" width="223"></a></div><br />When you say &#8220;Ok Google&#8221;, the microphone will activate and you&#8217;ll see a circle with bouncing dots &#8211; indicating that your voice command is being heard. For example, try saying &#8220;Ok Google, find gas stations&#8221;, and see what happens. You can tap the circle to cancel an ongoing command. If for some reason you want to use a non-hands-free alternative to saying &#8220;Ok Google&#8221;, tap the microphone and simply say &#8220;Find gas stations&#8221;.<br /><div><a href="https://1.bp.blogspot.com/-bxupj44GjFo/V-xSnzzDSdI/AAAAAAAAE9Y/LldCmw-PixID-2_RYCdXQjEcN68zFrwegCLcB/s1600/ActiveMicrophone.png"><img border="0" height="400" src="https://1.bp.blogspot.com/-bxupj44GjFo/V-xSnzzDSdI/AAAAAAAAE9Y/LldCmw-PixID-2_RYCdXQjEcN68zFrwegCLcB/s400/ActiveMicrophone.png" width="223"></a><a href="https://1.bp.blogspot.com/-8IyjVXFA2i8/V-xSn_bAGhI/AAAAAAAAE9c/xaDy85LZPgsKHws-Eer8yxSMFQ3Ced77wCLcB/s1600/GasStations.png"><img border="0" height="400" src="https://1.bp.blogspot.com/-8IyjVXFA2i8/V-xSn_bAGhI/AAAAAAAAE9c/xaDy85LZPgsKHws-Eer8yxSMFQ3Ced77wCLcB/s400/GasStations.png" width="223"></a></div><br />To make sure you have things set up correctly, tap the overflow menu (the button with three dots), then tap &#8220;Settings&#8221;, and finally, tap &#8220;&#8220;Ok Google&#8221; detection&#8221;. The &#8220;While driving&#8221; setting allows you to say &#8220;Ok Google&#8221; during navigation in Google Maps. If you&#8217;d like to do this anywhere on your device, you&#8217;ll need to enable the &#8220;Always on&#8221; setting (on some devices, the setting is called &#8220;From any screen&#8221;). And if for some reason you&#8217;d like to turn off &#8220;Ok Google&#8221; detection entirely throughout your device, you can do so by toggling the settings to the off position. <br /><br /><div><a href="https://2.bp.blogspot.com/-udW6WBeLjbc/V-xS8rcj4kI/AAAAAAAAE9o/IFG-aSUQPL4jBogp4LuvpZGP0EbODRDuQCLcB/s1600/NavigationMenu.png"><img border="0" height="400" src="https://2.bp.blogspot.com/-udW6WBeLjbc/V-xS8rcj4kI/AAAAAAAAE9o/IFG-aSUQPL4jBogp4LuvpZGP0EbODRDuQCLcB/s400/NavigationMenu.png" width="223"></a><a href="https://4.bp.blogspot.com/--SZP7aqcCyQ/V-xS8qn2UhI/AAAAAAAAE9s/O9klaiU5f5chP4mNvajinMq_XyqqTlcMQCLcB/s1600/OkGoogleDetection%2B%25281%2529.png"><img border="0" height="400" src="https://4.bp.blogspot.com/--SZP7aqcCyQ/V-xS8qn2UhI/AAAAAAAAE9s/O9klaiU5f5chP4mNvajinMq_XyqqTlcMQCLcB/s400/OkGoogleDetection%2B%25281%2529.png" width="223"></a></div><br />Once you&#8217;re all set up, the possibilities are endless. In addition to tried-and-true voice commands like &#8220;What&#8217;s my next turn?&#8221; and &#8220;What&#8217;s my ETA?&#8221;, you can now do things like &#8220;Show / Hide traffic&#8221;, &#8220;Mute / Unmute voice guidance&#8221;, and even &#8220;Avoid tolls / highways / ferries&#8221;, with just the sound of your voice. If you anticipate traffic, you can say &#8220;How&#8217;s traffic ahead?&#8221; or &#8220;Show alternate routes&#8221;. And if you want to add a little fun to your drive, you can say &#8220;Play some jazz&#8221;, &#8220;Send a text&#8221;, or maybe even &#8220;Call mom&#8221;. Here&#8217;s a <a href="https://support.google.com/maps/answer/6041199?hl=en">cheat sheet</a> with more of the voice commands you can use in Google Maps. Safe driving, and happy road tripping!<br /><br /><i>Posted by Raghu Simha, Product Manager, Google Maps</i> <br /><br /><br /><br /><br />]]></description>
				<content:encoded><![CDATA[As we approach the end of the year, many travelers will set out on holiday road trips to visit family and friends, near and far. Whether you’re driving solo, or don’t want to assign navigator duties to your passengers, it just got easier to get around while keeping your eyes on the road with new voice commands that are simpler than ever to use.<br /><br />For the ultimate hands-free and eyes-free experience, first make sure you’ve got the latest versions of the Google Maps app and Google app for Android. Then, the next time you enter navigation mode or <a href="https://maps.googleblog.com/2016/01/do-i-stay-or-do-i-go-now-google-maps.html">driving mode</a>, you can simply say “Ok Google” followed by a voice command, without needing to tap or even look at the screen. You’ll always know when voice commands can be used in Google Maps by looking for a white microphone icon in the top right corner.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-7XD6tREPQQk/V-xSZbVn0KI/AAAAAAAAE9U/F9WQNFV4R3gzGVHW0kRBUZ3KcpdeAoYpgCLcB/s1600/GuidedNavigation%2B%25281%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em; text-align: right;"><img border="0" height="400" src="https://3.bp.blogspot.com/-7XD6tREPQQk/V-xSZbVn0KI/AAAAAAAAE9U/F9WQNFV4R3gzGVHW0kRBUZ3KcpdeAoYpgCLcB/s400/GuidedNavigation%2B%25281%2529.png" width="223" /></a><a href="https://3.bp.blogspot.com/-JaFuS21pcxM/V-xSZca6GzI/AAAAAAAAE9Q/fBpngWJP50oklKgWhv5KzQ8Il4qmWHW3QCLcB/s1600/SmartDrive.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="https://3.bp.blogspot.com/-JaFuS21pcxM/V-xSZca6GzI/AAAAAAAAE9Q/fBpngWJP50oklKgWhv5KzQ8Il4qmWHW3QCLcB/s400/SmartDrive.png" width="223" /></a></div><br />When you say “Ok Google”, the microphone will activate and you’ll see a circle with bouncing dots – indicating that your voice command is being heard. For example, try saying “Ok Google, find gas stations”, and see what happens. You can tap the circle to cancel an ongoing command. If for some reason you want to use a non-hands-free alternative to saying “Ok Google”, tap the microphone and simply say “Find gas stations”.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-bxupj44GjFo/V-xSnzzDSdI/AAAAAAAAE9Y/LldCmw-PixID-2_RYCdXQjEcN68zFrwegCLcB/s1600/ActiveMicrophone.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="https://1.bp.blogspot.com/-bxupj44GjFo/V-xSnzzDSdI/AAAAAAAAE9Y/LldCmw-PixID-2_RYCdXQjEcN68zFrwegCLcB/s400/ActiveMicrophone.png" width="223" /></a><a href="https://1.bp.blogspot.com/-8IyjVXFA2i8/V-xSn_bAGhI/AAAAAAAAE9c/xaDy85LZPgsKHws-Eer8yxSMFQ3Ced77wCLcB/s1600/GasStations.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="https://1.bp.blogspot.com/-8IyjVXFA2i8/V-xSn_bAGhI/AAAAAAAAE9c/xaDy85LZPgsKHws-Eer8yxSMFQ3Ced77wCLcB/s400/GasStations.png" width="223" /></a></div><br />To make sure you have things set up correctly, tap the overflow menu (the button with three dots), then tap “Settings”, and finally, tap ““Ok Google” detection”. The “While driving” setting allows you to say “Ok Google” during navigation in Google Maps. If you’d like to do this anywhere on your device, you’ll need to enable the “Always on” setting (on some devices, the setting is called “From any screen”). And if for some reason you’d like to turn off “Ok Google” detection entirely throughout your device, you can do so by toggling the settings to the off position. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-udW6WBeLjbc/V-xS8rcj4kI/AAAAAAAAE9o/IFG-aSUQPL4jBogp4LuvpZGP0EbODRDuQCLcB/s1600/NavigationMenu.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="https://2.bp.blogspot.com/-udW6WBeLjbc/V-xS8rcj4kI/AAAAAAAAE9o/IFG-aSUQPL4jBogp4LuvpZGP0EbODRDuQCLcB/s400/NavigationMenu.png" width="223" /></a><a href="https://4.bp.blogspot.com/--SZP7aqcCyQ/V-xS8qn2UhI/AAAAAAAAE9s/O9klaiU5f5chP4mNvajinMq_XyqqTlcMQCLcB/s1600/OkGoogleDetection%2B%25281%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="https://4.bp.blogspot.com/--SZP7aqcCyQ/V-xS8qn2UhI/AAAAAAAAE9s/O9klaiU5f5chP4mNvajinMq_XyqqTlcMQCLcB/s400/OkGoogleDetection%2B%25281%2529.png" width="223" /></a></div><br />Once you’re all set up, the possibilities are endless. In addition to tried-and-true voice commands like “What’s my next turn?” and “What’s my ETA?”, you can now do things like “Show / Hide traffic”, “Mute / Unmute voice guidance”, and even “Avoid tolls / highways / ferries”, with just the sound of your voice. If you anticipate traffic, you can say “How’s traffic ahead?” or “Show alternate routes”. And if you want to add a little fun to your drive, you can say “Play some jazz”, “Send a text”, or maybe even “Call mom”. Here’s a <a href="https://support.google.com/maps/answer/6041199?hl=en">cheat sheet</a> with more of the voice commands you can use in Google Maps. Safe driving, and happy road tripping!<br /><br /><i>Posted by Raghu Simha, Product Manager, Google Maps</i> <br /><br /><br /><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/try-these-new-google-maps-voice-commands-on-your-next-road-trip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>A sizzling open source release for the Australian Election site</title>
		<link>https://googledata.org/google-maps/a-sizzling-open-source-release-for-the-australian-election-site/</link>
		<comments>https://googledata.org/google-maps/a-sizzling-open-source-release-for-the-australian-election-site/#comments</comments>
		<pubDate>Tue, 27 Sep 2016 16:58:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=5ee332b1176b0a9094425e03bdae57a3</guid>
		<description><![CDATA[One of the best parts of my job at Google is 20 percent time. While I was hired to help developers use Google&#8217;s APIs, I value the time I'm afforded to be a student myself&#8212;to learn new technologies and solve real-world problems. A few weeks prior to the recent Australian election an opportunity presented itself. A small team in Sydney set their sights on helping the 15 million voters stay informed of how to participate, track real-time results, and (of course) find the closest election sausage sizzle!<br /><div>
<a href="https://3.bp.blogspot.com/-NLoI9t3m8yE/V-qgOgVGKOI/AAAAAAAAAiU/IqaTGuVyE70_rS0pi3sdyZOpCTkzwIjhACLcB/s1600/AU_elections_team.png"><img border="0" height="198" src="https://3.bp.blogspot.com/-NLoI9t3m8yE/V-qgOgVGKOI/AAAAAAAAAiU/IqaTGuVyE70_rS0pi3sdyZOpCTkzwIjhACLcB/s640/AU_elections_team.png" width="640"></a></div>
Our team of designers, engineers and product managers didn't have an immediate sense of how to attack the problem. What we did have was the power of Google&#8217;s APIs, programming languages, and Cloud hosting with Firebase and Google Cloud Platform.<br /><div>
<span><img height="393" src="https://lh3.googleusercontent.com/Ks1wpzKxi5hj_SLnBal7joAXN4ZV5dS_uwNsrvMaY24kB-IxbcWR5IT-pLYBojQhqzRDCO7JS3nPy7p_PYkH5VCPI51QTSUOyZBYQrroSkDGJywfZB5DXSo3nFUkyF1kPguBba8t" width="640"></span></div>
<span></span><br />
The result is a mish-mash of some technologies we'd been wanting to learn more about. We're open sourcing the <a href="http://ausvotes.withgoogle.com/">ausvotes.withgoogle.com</a>&#160;repository to give developers a sense of what happens when you get a handful of engineers in a room with a clear goal and a immovable deadline.<br /><br />
The <a href="https://github.com/google/election-au-2016" target="_blank">Election AU 2016 repository</a> uses:<br /><br /><ul><li><b>Go</b> from Google App Engine instances to serve the appropriate level of detail for users' viewport queries from memory at very low latency, and</li>
<li><b>Dart</b> to render the live result maps on top of Google Maps JavaScript API using Firebase real time database updates.</li>
</ul><br />
A product is only as good as the attention and usage is receives. Our team was really happy with the results of our work:<br /><br /><ul><li>406,000 people used our maps, including 217,000 on election day.</li>
<li>We had 139 stories in the media.</li>
<li>Our map was also embedded in major news websites, such as <a href="http://www.skynews.com.au/news/politics.html" target="_blank">Sky News</a>.</li>
</ul><br />
Complete setup and installation instructions are available in the <a href="https://github.com/google/election-au-2016/blob/master/README.md" target="_blank">Github README</a>.<br /><table><tbody><tr><td><br /><div>
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/VsCCQFmzQjjI1o0JVWtLF69SGkoFrdyBnHaibB731DlKt8dFPoZgF7C-FJMlKYXuJw6fbqOR8yWiShUaUz1XIGW7qVxE-VUatNkFUYNcCsTPOwHDj2kF6ffZ8JtS-HipXGutmrrV"></div>
</td>  <td><i>Posted by Brett Morgan, Developer Programs Engineer</i></td></tr></tbody></table>]]></description>
				<content:encoded><![CDATA[One of the best parts of my job at Google is 20 percent time. While I was hired to help developers use Google’s APIs, I value the time I'm afforded to be a student myself—to learn new technologies and solve real-world problems. A few weeks prior to the recent Australian election an opportunity presented itself. A small team in Sydney set their sights on helping the 15 million voters stay informed of how to participate, track real-time results, and (of course) find the closest election sausage sizzle!<br />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://3.bp.blogspot.com/-NLoI9t3m8yE/V-qgOgVGKOI/AAAAAAAAAiU/IqaTGuVyE70_rS0pi3sdyZOpCTkzwIjhACLcB/s1600/AU_elections_team.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="198" src="https://3.bp.blogspot.com/-NLoI9t3m8yE/V-qgOgVGKOI/AAAAAAAAAiU/IqaTGuVyE70_rS0pi3sdyZOpCTkzwIjhACLcB/s640/AU_elections_team.png" width="640" /></a></div>
Our team of designers, engineers and product managers didn't have an immediate sense of how to attack the problem. What we did have was the power of Google’s APIs, programming languages, and Cloud hosting with Firebase and Google Cloud Platform.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="background-color: white; color: #212121; font-family: &quot;arial&quot;; font-size: 13.3333px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img height="393" src="https://lh3.googleusercontent.com/Ks1wpzKxi5hj_SLnBal7joAXN4ZV5dS_uwNsrvMaY24kB-IxbcWR5IT-pLYBojQhqzRDCO7JS3nPy7p_PYkH5VCPI51QTSUOyZBYQrroSkDGJywfZB5DXSo3nFUkyF1kPguBba8t" style="border: none; transform: rotate(0rad);" width="640" /></span></div>
<span id="docs-internal-guid-5f8e23f1-6c7d-90b7-c6e9-7a6c63ed84b7"></span><br />
The result is a mish-mash of some technologies we'd been wanting to learn more about. We're open sourcing the <a href="http://ausvotes.withgoogle.com/">ausvotes.withgoogle.com</a>&nbsp;repository to give developers a sense of what happens when you get a handful of engineers in a room with a clear goal and a immovable deadline.<br />
<br />
The <a href="https://github.com/google/election-au-2016" >Election AU 2016 repository</a> uses:<br />
<br />
<ul>
<li><b>Go</b> from Google App Engine instances to serve the appropriate level of detail for users' viewport queries from memory at very low latency, and</li>
<li><b>Dart</b> to render the live result maps on top of Google Maps JavaScript API using Firebase real time database updates.</li>
</ul>
<br />
A product is only as good as the attention and usage is receives. Our team was really happy with the results of our work:<br />
<br />
<ul>
<li>406,000 people used our maps, including 217,000 on election day.</li>
<li>We had 139 stories in the media.</li>
<li>Our map was also embedded in major news websites, such as <a href="http://www.skynews.com.au/news/politics.html" >Sky News</a>.</li>
</ul>
<br />
Complete setup and installation instructions are available in the <a href="https://github.com/google/election-au-2016/blob/master/README.md" >Github README</a>.<br />
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;">
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/VsCCQFmzQjjI1o0JVWtLF69SGkoFrdyBnHaibB731DlKt8dFPoZgF7C-FJMlKYXuJw6fbqOR8yWiShUaUz1XIGW7qVxE-VUatNkFUYNcCsTPOwHDj2kF6ffZ8JtS-HipXGutmrrV" style="border-radius: 50%; width: 80px;" /></div>
</td>  <td><i>Posted by Brett Morgan, Developer Programs Engineer</i></td></tr>
</tbody></table>
]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/a-sizzling-open-source-release-for-the-australian-election-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Walk the Ryder Cup at Hazeltine like the pros with Street View</title>
		<link>https://googledata.org/google-earth/walk-the-ryder-cup-at-hazeltine-like-the-pros-with-street-view/</link>
		<comments>https://googledata.org/google-earth/walk-the-ryder-cup-at-hazeltine-like-the-pros-with-street-view/#comments</comments>
		<pubDate>Tue, 27 Sep 2016 16:37:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=008249291eb8153f964f0aa9c5b7aee7</guid>
		<description><![CDATA[Earlier this year, Turner Sports approached us with an idea: Help us change the way golf fans experience the sport&#8217;s biggest event of the year, the Ryder Cup. Always up for helping users go where they&#8217;ve never gone before, we loaned Turner a <a href="https://gmail.google.com/maps/about/partners/streetview/trekker/">Street View Trekker</a>. They hit the links to collect hole-by-hole imagery at Minnesota&#8217;s Hazeltine National Golf Club, site of this year's tournament starting today through October 2. <br /><br />Over two days, the team covered the 160-acres course.  <br /><span><span><img height="382" src="https://lh4.googleusercontent.com/EFQ6Jdr4tMAvfEMQCxyTTroWdQ_zu4VPy9OsKRyQm6pH9SNJlEkh0itgNp4d4lSbmYF-Fnbx3LmfHR6CmTAlxP6KvrwZjMM2FRh89FtUAqFiiPBbJ93zOlTRQInIHcw89UoaJ1qp" width="574"></span></span><br /><div><i>Randy Dickerson, of Turner Sports, gets ready for his first trek. Randy and team carried the 40lb camera over the 5+ mile golf course at Hazeltine National Golf Club.</i></div><span><span><img height="386" src="https://lh3.googleusercontent.com/HQ-WRZpHW_pMTNWJePgLVDAdiGYZAIpVkeie1i-lVAcVHQEyg9vGln7rgkUUWG0I5253Hr5_mTGQ2y4hZLVpskaK93MTOEN3mghIjcDw7mBzNu2xQNKR3gMYf1QSoBJ21OhW-Gy4" width="579"></span></span><br /><div><i>Not to be outdone by past Street View collects captured by&#160;<a href="https://www.google.com/maps/@56.5428903,-79.2278771,3a,75y,10.9h,67.47t/data=!3m6!1e1!3m4!1sdkHee0VAu6hrLLOAQ25hGg!2e0!7i13312!8i6656">snowmobile</a>,&#160;<a href="https://www.google.com/maps/@-3.1377605,-60.4933549,3a,75y,154.19h,92.8t/data=!3m6!1e1!3m4!1s1ci-8iBT_UuG1dlrUy1vzg!2e0!7i13312!8i6656">boat</a>&#160;and&#160;<a href="https://www.google.com/maps/@-5.5752329,-60.3501634,3a,75y,230.39h,64.62t/data=!3m7!1e1!3m5!1scuRweifj88_lLmHN65Z_xw!2e0!3e5!7i13312!8i6656">zipline</a>, the Trekker hitched a ride on a golf cart.</i></div><div><i><br /></i></div>Explore the images on <a href="https://goo.gl/maps/CBd8Auew9ox">Google Maps</a>, or walk the course like the pros using the <a href="http://explorer.rydercup.com/?utm_source=pr&#38;utm_medium=google_pr&#38;utm_campaign=source">Hazeltine Explorer</a>, an interactive tour developed by Turner and Ubilabs. Along with 360-degree views, the site, built with Google Maps APIs, features custom elevation graphs for every hole, integrated video highlights and course-specific historical moments.<br /><span><span><img height="359" src="https://lh6.googleusercontent.com/uTR3W4U6o5yuonDsVzAmdKaSlAG5u7E9qSpOvbaFOEit0DYX1EE85AlSaPFh1vLNUvu_cWG5TMEaQJ9eXo6XjLA6sFYYAXIUNnaDpei0bi7Z9UDqCSicBa48iRux8Mvf2VAN_ydA" width="624"></span></span><br />Fans attending the event can also make use of the Ryder Cup app&#8217;s Wayfinding feature, available on <a href="https://play.google.com/store/apps/details?id=com.turner.pga.rydercup.us&#38;hl=en">Android </a>and <a href="https://itunes.apple.com/us/app/ryder-cup-2016-hazeltine-national/id392186427?mt=8">iOS</a>. Built using Google Maps APIs, the feature includes a detailed view of the course with routing instructions that account for walking paths and crosswalks. The map also displays information about on-course amenities and facilities. &#8232;&#8232;<br /><span><span><img alt="iPhone_wayfinder.png" height="460" src="https://lh4.googleusercontent.com/4DPwji1h4Exuf1F8UhoHuAjQ4tfTmbCBHXYuwyPt4MV3WZqwVvALgTFMPcZatya87HZZeqC6mERxBIUa7qQaEQ7saYoJ-lUZFV2ogtUU-JW0zZouxx0DlZ4rY5ex539_PgLokptX" width="246"></span></span><br /><span><span></span></span><br />Posted By: Vanessa Schneider, Program Manager, Google Earth Outreach]]></description>
				<content:encoded><![CDATA[Earlier this year, Turner Sports approached us with an idea: Help us change the way golf fans experience the sport’s biggest event of the year, the Ryder Cup. Always up for helping users go where they’ve never gone before, we loaned Turner a <a href="https://gmail.google.com/maps/about/partners/streetview/trekker/">Street View Trekker</a>. They hit the links to collect hole-by-hole imagery at Minnesota’s Hazeltine National Golf Club, site of this year's tournament starting today through October 2. <br /><br />Over two days, the team covered the 160-acres course.  <br /><span id="docs-internal-guid-76259dce-6c77-f7e1-ac98-26741c809d4a"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="382" src="https://lh4.googleusercontent.com/EFQ6Jdr4tMAvfEMQCxyTTroWdQ_zu4VPy9OsKRyQm6pH9SNJlEkh0itgNp4d4lSbmYF-Fnbx3LmfHR6CmTAlxP6KvrwZjMM2FRh89FtUAqFiiPBbJ93zOlTRQInIHcw89UoaJ1qp" style="border: none; transform: rotate(0rad);" width="574" /></span></span><br /><div style="text-align: center;"><i>Randy Dickerson, of Turner Sports, gets ready for his first trek. Randy and team carried the 40lb camera over the 5+ mile golf course at Hazeltine National Golf Club.</i></div><span id="docs-internal-guid-76259dce-6c78-62db-aace-0cf620c66775"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="386" src="https://lh3.googleusercontent.com/HQ-WRZpHW_pMTNWJePgLVDAdiGYZAIpVkeie1i-lVAcVHQEyg9vGln7rgkUUWG0I5253Hr5_mTGQ2y4hZLVpskaK93MTOEN3mghIjcDw7mBzNu2xQNKR3gMYf1QSoBJ21OhW-Gy4" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="579" /></span></span><br /><div style="text-align: center;"><i>Not to be outdone by past Street View collects captured by&nbsp;<a href="https://www.google.com/maps/@56.5428903,-79.2278771,3a,75y,10.9h,67.47t/data=!3m6!1e1!3m4!1sdkHee0VAu6hrLLOAQ25hGg!2e0!7i13312!8i6656">snowmobile</a>,&nbsp;<a href="https://www.google.com/maps/@-3.1377605,-60.4933549,3a,75y,154.19h,92.8t/data=!3m6!1e1!3m4!1s1ci-8iBT_UuG1dlrUy1vzg!2e0!7i13312!8i6656">boat</a>&nbsp;and&nbsp;<a href="https://www.google.com/maps/@-5.5752329,-60.3501634,3a,75y,230.39h,64.62t/data=!3m7!1e1!3m5!1scuRweifj88_lLmHN65Z_xw!2e0!3e5!7i13312!8i6656">zipline</a>, the Trekker hitched a ride on a golf cart.</i></div><div style="text-align: center;"><i><br /></i></div>Explore the images on <a href="https://goo.gl/maps/CBd8Auew9ox">Google Maps</a>, or walk the course like the pros using the <a href="http://explorer.rydercup.com/?utm_source=pr&amp;utm_medium=google_pr&amp;utm_campaign=source">Hazeltine Explorer</a>, an interactive tour developed by Turner and Ubilabs. Along with 360-degree views, the site, built with Google Maps APIs, features custom elevation graphs for every hole, integrated video highlights and course-specific historical moments.<br /><span id="docs-internal-guid-76259dce-6c78-bb15-682e-e48f0d91bee2"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="359" src="https://lh6.googleusercontent.com/uTR3W4U6o5yuonDsVzAmdKaSlAG5u7E9qSpOvbaFOEit0DYX1EE85AlSaPFh1vLNUvu_cWG5TMEaQJ9eXo6XjLA6sFYYAXIUNnaDpei0bi7Z9UDqCSicBa48iRux8Mvf2VAN_ydA" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="624" /></span></span><br />Fans attending the event can also make use of the Ryder Cup app’s Wayfinding feature, available on <a href="https://play.google.com/store/apps/details?id=com.turner.pga.rydercup.us&amp;hl=en">Android </a>and <a href="https://itunes.apple.com/us/app/ryder-cup-2016-hazeltine-national/id392186427?mt=8">iOS</a>. Built using Google Maps APIs, the feature includes a detailed view of the course with routing instructions that account for walking paths and crosswalks. The map also displays information about on-course amenities and facilities.   <br /><span id="docs-internal-guid-76259dce-6c80-edef-847a-cb7bac086bc1"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img alt="iPhone_wayfinder.png" height="460" src="https://lh4.googleusercontent.com/4DPwji1h4Exuf1F8UhoHuAjQ4tfTmbCBHXYuwyPt4MV3WZqwVvALgTFMPcZatya87HZZeqC6mERxBIUa7qQaEQ7saYoJ-lUZFV2ogtUU-JW0zZouxx0DlZ4rY5ex539_PgLokptX" style="border: none; font-size: 14.6667px; transform: rotate(0rad);" width="246" /></span></span><br /><span id="docs-internal-guid-76259dce-6c79-028c-33ea-5127856e0196"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"></span></span><br />Posted By: Vanessa Schneider, Program Manager, Google Earth Outreach ]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/walk-the-ryder-cup-at-hazeltine-like-the-pros-with-street-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Custom map styling with the Google Maps APIs on Android and iOS</title>
		<link>https://googledata.org/google-maps/custom-map-styling-with-the-google-maps-apis-on-android-and-ios/</link>
		<comments>https://googledata.org/google-maps/custom-map-styling-with-the-google-maps-apis-on-android-and-ios/#comments</comments>
		<pubDate>Wed, 21 Sep 2016 21:49:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=4b1f306fe70b635ffd0b2a70033a6250</guid>
		<description><![CDATA[<div>
</div>
<table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><img height="476" src="https://lh4.googleusercontent.com/nRew6YjrG9MDigzP5ALRQj454qUhlLyR5xySKkgK413iCE6-M_ydHKgn8ORzaRRWPyj-FK_uYjlzBQSocXwsuzPdDA6He8WRwd0gNlYmU_MBlkKu8gD_PcIm44o2nsrNCwSa9X9b" width="640"></td></tr><tr><td>Your app, your map style. For iOS and Android.</td></tr></tbody></table><br />
Cross-platform custom map styling is here&#8212;change the color palette of your maps, hide labels, vary road density and toggle points of interest. Your maps can now match your brand and style across your website and your apps!<br /><br />
The Google Maps APIs now support you in creating beautiful styled maps for your Android and iOS apps as well as your website using the same JSON style object.<br /><br /><h3>
Easily create your style</h3>
The new <a href="https://mapstyle.withgoogle.com/" target="_blank">Google Maps APIs Styling Wizard</a> helps you to create a map style in a few clicks. Use one of our pre-built styles or create your own style from scratch.<br /><br />
Access advanced options for further control over every available aspect of your map style including visibility, fills &#38; stroke weight.<br /><br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><img height="360" src="https://lh4.googleusercontent.com/q-GCVpr80yj-FrP7bpb1fe5ok03IrQSkFLc5Jkbsh_c-muRskAuipPrCSUX1hMWGUIzV1KcfypAoS12UbdZ0oypdAAqzNtgyco-uPfyoRQSy6sfA_2M5rdtQIxUFIOFABocwhl4k" width="621"></td></tr><tr><td>Use the styling wizard for point and click custom style creation.</td></tr></tbody></table><span></span><br /><h3>
Show what&#8217;s important, hide the rest </h3>
Custom map styling provides you with ways to tailor your map for a particular use case. Got your own transit stops and want to turn the Google ones off? We&#8217;ve got you covered. Want to hide highways and highlight water features? Done. You can control the visibility of labels, landscapes, transit icons, points of interest, roads and more to create the look that reflects your brand and purpose. See the samples for <a href="https://developers.google.com/maps/documentation/android-api/hiding-features" target="_blank">Android</a>, <a href="https://developers.google.com/maps/documentation/ios-sdk/hiding-features" target="_blank">iOS</a> and <a href="https://developers.google.com/maps/documentation/javascript/examples/hiding-features" target="_blank">JavaScript</a>.<br /><br />
Both the iOS and the Android SDKs now support business points of interest as well; this means you&#8217;ll now see hotels, restaurants and shops on your maps. They&#8217;ll only be visible when you compile with the latest SDKs and you can control their visibility via styling.<br /><br /><h3>
Style once, use on any platform</h3>
When you&#8217;re happy with your new map style, you can export &#38; use the same JSON styling object in our iOS, Android and JavaScript Maps APIs. The Styling Wizard also provides the URL for you to use with the Google Static Maps API. <br /><br />
To enable a custom style in your app or website, take a look at the code samples:  <a href="https://github.com/googlemaps/android-samples/blob/master/ApiDemos/app/src/main/java/com/example/mapdemo/StyledMapDemoActivity.java" target="_blank">Android</a>, <a href="https://github.com/googlemaps/maps-sdk-for-ios-samples/blob/master/GoogleMaps/GoogleMapsDemos/Samples/StyledMapViewController.m" target="_blank">iOS</a> &#38; <a href="https://developers.google.com/maps/documentation/javascript/examples/style-selector" target="_blank">JavaScript</a>. <br /><br />
You can distribute the styles with your app, fetch them dynamically, and even change them at runtime. <br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><img height="360" src="https://lh4.googleusercontent.com/gKIQmAZwp65s6zgenLoq3HMFDqG2PmasGXmwJzCV36JGferiCKO32ZXJLDBywcii5sGf9iOStgOn-pa2YzovIcX-ACPO0yfCCxAJGMx9X8aV8pbg6EhaefhlQzU9NP2fWQ3ASXBS" width="640"></td></tr><tr><td>Custom styles now work on native iOS and Android apps as well as the web.</td></tr></tbody></table><div>
<span></span></div>
The <a href="https://developers.google.com/maps/documentation/android-api/releases" target="_blank">Android</a> and <a href="https://developers.google.com/maps/documentation/ios-sdk/releases" target="_blank">iOS</a> release notes contain details of bugs fixed as well as the custom basemap styling features mentioned in this post.  Read the Maps APIs styling guides for <a href="https://developers.google.com/maps/documentation/android-api/styling" target="_blank">Android</a>, <a href="https://developers.google.com/maps/documentation/ios-sdk/styling" target="_blank">iOS</a> and <a href="https://developers.google.com/maps/documentation/javascript/styling" target="_blank">JavaScript</a>, and watch the Styling your Maps Geocast (embedded below).<br /><br /><div>
</div>
<br /><span>A big thank you</span> to Android and iOS developers everywhere for using the Google Maps Android API and the Google Maps SDK for iOS and submitting feedback via the <a href="https://code.google.com/p/gmaps-api-issues/" target="_blank">issue tracker</a>. We heard you!<br /><br />
Share your styled basemaps on <a href="https://twitter.com/search?f=tweets&#38;q=%23mapstyle" target="_blank">Twitter</a> and <a href="https://plus.google.com/s/%23mapstyle" target="_blank">G+</a> via #mapstyle and show us what you&#8217;ve done!<br /><table><tbody><tr><td><img alt="author image" border="0" src="https://lh3.googleusercontent.com/6vY84AOYgFkem78tpMCEVfW5XJJ3jQkP5GC1-q3jfcwXiuLoyhal527iFmM02FL43vk6XV7XIqnU7daYNMxDwOKqr5RZK4bdnYXQlyBrpfr-DwO5u2tqFVBtj6ZgpdEfxV2v7Ocy"></td>  <td><i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i></td></tr></tbody></table>]]></description>
				<content:encoded><![CDATA[<div class="separator" style="clear: both; text-align: center;">
</div>
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><img height="476" src="https://lh4.googleusercontent.com/nRew6YjrG9MDigzP5ALRQj454qUhlLyR5xySKkgK413iCE6-M_ydHKgn8ORzaRRWPyj-FK_uYjlzBQSocXwsuzPdDA6He8WRwd0gNlYmU_MBlkKu8gD_PcIm44o2nsrNCwSa9X9b" style="border: none; margin-left: auto; margin-right: auto; transform: rotate(0rad);" width="640" /></td></tr>
<tr><td class="tr-caption" style="text-align: center;">Your app, your map style. For iOS and Android.</td></tr>
</tbody></table>
<br />
Cross-platform custom map styling is here—change the color palette of your maps, hide labels, vary road density and toggle points of interest. Your maps can now match your brand and style across your website and your apps!<br />
<br />
The Google Maps APIs now support you in creating beautiful styled maps for your Android and iOS apps as well as your website using the same JSON style object.<br />
<br />
<h3>
Easily create your style</h3>
The new <a href="https://mapstyle.withgoogle.com/" >Google Maps APIs Styling Wizard</a> helps you to create a map style in a few clicks. Use one of our pre-built styles or create your own style from scratch.<br />
<br />
Access advanced options for further control over every available aspect of your map style including visibility, fills &amp; stroke weight.<br />
<br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><img height="360" src="https://lh4.googleusercontent.com/q-GCVpr80yj-FrP7bpb1fe5ok03IrQSkFLc5Jkbsh_c-muRskAuipPrCSUX1hMWGUIzV1KcfypAoS12UbdZ0oypdAAqzNtgyco-uPfyoRQSy6sfA_2M5rdtQIxUFIOFABocwhl4k" style="border: none; margin-left: auto; margin-right: auto; transform: rotate(0rad);" width="621" /></td></tr>
<tr><td class="tr-caption" style="text-align: center;">Use the styling wizard for point and click custom style creation.</td></tr>
</tbody></table>
<span id="docs-internal-guid-970f459c-4d45-6e4f-36f1-6774308050c5"></span><br />
<h3>
Show what’s important, hide the rest </h3>
Custom map styling provides you with ways to tailor your map for a particular use case. Got your own transit stops and want to turn the Google ones off? We’ve got you covered. Want to hide highways and highlight water features? Done. You can control the visibility of labels, landscapes, transit icons, points of interest, roads and more to create the look that reflects your brand and purpose. See the samples for <a href="https://developers.google.com/maps/documentation/android-api/hiding-features" >Android</a>, <a href="https://developers.google.com/maps/documentation/ios-sdk/hiding-features" >iOS</a> and <a href="https://developers.google.com/maps/documentation/javascript/examples/hiding-features" >JavaScript</a>.<br />
<br />
Both the iOS and the Android SDKs now support business points of interest as well; this means you’ll now see hotels, restaurants and shops on your maps. They’ll only be visible when you compile with the latest SDKs and you can control their visibility via styling.<br />
<br />
<h3>
Style once, use on any platform</h3>
When you’re happy with your new map style, you can export &amp; use the same JSON styling object in our iOS, Android and JavaScript Maps APIs. The Styling Wizard also provides the URL for you to use with the Google Static Maps API. <br />
<br />
To enable a custom style in your app or website, take a look at the code samples:  <a href="https://github.com/googlemaps/android-samples/blob/master/ApiDemos/app/src/main/java/com/example/mapdemo/StyledMapDemoActivity.java" >Android</a>, <a href="https://github.com/googlemaps/maps-sdk-for-ios-samples/blob/master/GoogleMaps/GoogleMapsDemos/Samples/StyledMapViewController.m" >iOS</a> &amp; <a href="https://developers.google.com/maps/documentation/javascript/examples/style-selector" >JavaScript</a>. <br />
<br />
You can distribute the styles with your app, fetch them dynamically, and even change them at runtime. <br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><img height="360" src="https://lh4.googleusercontent.com/gKIQmAZwp65s6zgenLoq3HMFDqG2PmasGXmwJzCV36JGferiCKO32ZXJLDBywcii5sGf9iOStgOn-pa2YzovIcX-ACPO0yfCCxAJGMx9X8aV8pbg6EhaefhlQzU9NP2fWQ3ASXBS" style="border: none; margin-left: auto; margin-right: auto; transform: rotate(0rad);" width="640" /></td></tr>
<tr><td class="tr-caption" style="text-align: center;">Custom styles now work on native iOS and Android apps as well as the web.</td></tr>
</tbody></table>
<div class="separator" style="clear: both; text-align: center;">
<span style="background-color: white; color: #212121; font-family: &quot;arial&quot;; font-size: 14.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"></span></div>
The <a href="https://developers.google.com/maps/documentation/android-api/releases" >Android</a> and <a href="https://developers.google.com/maps/documentation/ios-sdk/releases" >iOS</a> release notes contain details of bugs fixed as well as the custom basemap styling features mentioned in this post.  Read the Maps APIs styling guides for <a href="https://developers.google.com/maps/documentation/android-api/styling" >Android</a>, <a href="https://developers.google.com/maps/documentation/ios-sdk/styling" >iOS</a> and <a href="https://developers.google.com/maps/documentation/javascript/styling" >JavaScript</a>, and watch the Styling your Maps Geocast (embedded below).<br />
<br />
<div class="separator" style="clear: both; text-align: center;">
<iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/sLZxAB1el6w" width="560"></iframe></div>
<br />
<span style="font-size: x-large;">A big thank you</span> to Android and iOS developers everywhere for using the Google Maps Android API and the Google Maps SDK for iOS and submitting feedback via the <a href="https://code.google.com/p/gmaps-api-issues/" >issue tracker</a>. We heard you!<br />
<br />
Share your styled basemaps on <a href="https://twitter.com/search?f=tweets&amp;q=%23mapstyle" >Twitter</a> and <a href="https://plus.google.com/s/%23mapstyle" >G+</a> via #mapstyle and show us what you’ve done!<br />
<table><tbody>
<tr> <td style="width: 80px;"><img alt="author image" border="0" src="https://lh3.googleusercontent.com/6vY84AOYgFkem78tpMCEVfW5XJJ3jQkP5GC1-q3jfcwXiuLoyhal527iFmM02FL43vk6XV7XIqnU7daYNMxDwOKqr5RZK4bdnYXQlyBrpfr-DwO5u2tqFVBtj6ZgpdEfxV2v7Ocy" style="border-radius: 50%; text-align: center; width: 80px;" /></td>  <td><i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i></td></tr>
</tbody></table>
]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/custom-map-styling-with-the-google-maps-apis-on-android-and-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Always know which way you’re headed with this Google Maps update</title>
		<link>https://googledata.org/google-earth/always-know-which-way-youre-headed-with-this-google-maps-update/</link>
		<comments>https://googledata.org/google-earth/always-know-which-way-youre-headed-with-this-google-maps-update/#comments</comments>
		<pubDate>Tue, 20 Sep 2016 13:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=2b6f017f099974a7202844c582617b41</guid>
		<description><![CDATA[One of the basic features of the Google Maps app is the ability to open the app and find out which direction you're facing in a matter of seconds. To make orienting yourself even easier in Google Maps for Android, we've replaced the direction arrow on your blue dot with a shining blue beam &#8211; think of it as a flashlight guiding your travels.<br /><br /><div><a href="https://2.bp.blogspot.com/-S4PFTAWm9WA/V-CvdmrvH8I/AAAAAAAAE9A/_d85sb4tuv4AWLwF1eoVpAg0TfYoCbB1QCLcB/s1600/compass_blogpost_screenshot.png"><img border="0" height="640" src="https://2.bp.blogspot.com/-S4PFTAWm9WA/V-CvdmrvH8I/AAAAAAAAE9A/_d85sb4tuv4AWLwF1eoVpAg0TfYoCbB1QCLcB/s640/compass_blogpost_screenshot.png" width="428"></a></div><br />The beam also tells you how accurate your phone&#8217;s direction is at any given time. The narrower the beam, the more accurate the direction. The wider the beam, the more likely it is that your  your phone&#8217;s compass is temporarily uncalibrated, which means that its sensors aren&#8217;t working as they should be. This can happen by doing something as simple as charging your phone or walking by a metal pole, which most of us do everyday. Thankfully, there&#8217;s a really easy fix. Any time you want to get back on track &#8211; not just when you see a prompt or notification &#8211; simply move your phone in a figure 8 motion a few times. This should immediately result in a more accurate direction.<br /><div><span><span><img alt="Help_Article_v1.gif" height="400" src="https://lh4.googleusercontent.com/LLeVqLZ2Q91aUjr-ZLRDMTSJV-vIwIS318NVF0wnysO9rCWDQHbEeCz8S-zzSyroBRYHNmyy5ScC6LJOScA-oJSdGq1iso_p3SyQHO_InsUMpU5BEdACAGRgFjS9TrGthfkOHBN5" width="400"></span></span></div>Once you master the curving motion, you&#8217;re one step closer to having a more accurate compass when you use Google Maps on your Android phone. <br /><br /><i>Posted by: Raja Ayyagari, Product Manager, Google Maps</i>]]></description>
				<content:encoded><![CDATA[One of the basic features of the Google Maps app is the ability to open the app and find out which direction you're facing in a matter of seconds. To make orienting yourself even easier in Google Maps for Android, we've replaced the direction arrow on your blue dot with a shining blue beam – think of it as a flashlight guiding your travels.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-S4PFTAWm9WA/V-CvdmrvH8I/AAAAAAAAE9A/_d85sb4tuv4AWLwF1eoVpAg0TfYoCbB1QCLcB/s1600/compass_blogpost_screenshot.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="https://2.bp.blogspot.com/-S4PFTAWm9WA/V-CvdmrvH8I/AAAAAAAAE9A/_d85sb4tuv4AWLwF1eoVpAg0TfYoCbB1QCLcB/s640/compass_blogpost_screenshot.png" width="428" /></a></div><br />The beam also tells you how accurate your phone’s direction is at any given time. The narrower the beam, the more accurate the direction. The wider the beam, the more likely it is that your  your phone’s compass is temporarily uncalibrated, which means that its sensors aren’t working as they should be. This can happen by doing something as simple as charging your phone or walking by a metal pole, which most of us do everyday. Thankfully, there’s a really easy fix. Any time you want to get back on track – not just when you see a prompt or notification – simply move your phone in a figure 8 motion a few times. This should immediately result in a more accurate direction.<br /><div style="text-align: center;"><span id="docs-internal-guid-e042dee9-452c-e6ca-d710-17b300835163"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img alt="Help_Article_v1.gif" height="400" src="https://lh4.googleusercontent.com/LLeVqLZ2Q91aUjr-ZLRDMTSJV-vIwIS318NVF0wnysO9rCWDQHbEeCz8S-zzSyroBRYHNmyy5ScC6LJOScA-oJSdGq1iso_p3SyQHO_InsUMpU5BEdACAGRgFjS9TrGthfkOHBN5" style="border: none; transform: rotate(0rad);" width="400" /></span></span></div>Once you master the curving motion, you’re one step closer to having a more accurate compass when you use Google Maps on your Android phone. <br /><br /><i>Posted by: Raja Ayyagari, Product Manager, Google Maps</i>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/always-know-which-way-youre-headed-with-this-google-maps-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Mapping global fishing activity with machine learning</title>
		<link>https://googledata.org/google-earth/mapping-global-fishing-activity-with-machine-learning/</link>
		<comments>https://googledata.org/google-earth/mapping-global-fishing-activity-with-machine-learning/#comments</comments>
		<pubDate>Thu, 15 Sep 2016 17:10:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=9b63784b92ddff7f1c852b4f868e096b</guid>
		<description><![CDATA[<div></div><br />The world&#8217;s oceans and fisheries are at a turning point. Over a billion people depend on wild-caught fish for their primary source of protein. Fisheries are intertwined with global food security, slave labor issues, livelihoods, sovereign wealth and biodiversity but our fisheries are being harvested beyond sustainable levels. Fish populations have already plummeted by 90 percent for some species within the last generation, and the human population is only growing larger. One in five fish entering global markets is harvested illegally, or is unreported or unregulated. But amidst all these sobering trends, we're also better equipped to face these challenges &#8212; thanks to the rise of technology, increased availability of information, and a growing international desire to create a sustainable future.<br /><br />Today, in partnership with <a href="http://oceana.org/">Oceana</a> and <a href="http://skytruth.org/">SkyTruth</a>, we&#8217;re launching <a href="http://globalfishingwatch.org/">Global Fishing Watch</a>, a beta technology platform intended to increase awareness of fisheries and influence sustainable policy through transparency. Global Fishing Watch combines cloud computing technology with satellite data to provide the world&#8217;s first global view of commercial fishing activities. It gives anyone around the world &#8212; citizens, governments, industry, and researchers &#8212; a free, simple, online platform to visualize, track, and share information about fishing activity worldwide.<br /><br /><div><span><span><img height="319" src="https://lh3.googleusercontent.com/84dEqyxQ_7WG2Eal-drkDjl1Wp8WigGS65ziAF2uPU_N7pfn_9hfrmr_yiV_iihhp8gdBacfON7Uv1pABCHF1oVAsHS4Vx7cXJJGrA54_ZtIWYrUs4jYqIENDdXqppFPkOCN6HIh" width="568"></span></span></div><div><i>Global Fishing Watch, the first global view of large scale commercial fishing activity over time</i></div><br />At any given time, there are about 200,000 vessels publicly broadcasting their location at sea through the Automatic Identification System (AIS). Their signals are picked up by dozens of satellites and thousands of terrestrial receivers. Global Fishing Watch runs this information &#8212; more than 22 million points of information per day &#8212; through machine learning classifiers to determine the type of ship (e.g., cargo, tug, sail, fishing), what kind of fishing gear (longline, purse seine, trawl) they&#8217;re using and where they&#8217;re fishing based on their movement patterns. To do this, our research partners and fishery experts have manually classified thousands of vessel tracks as training data to &#8220;teach&#8221; our algorithms what fishing looks like. We then apply that learning to the entire dataset &#8212; 37 billion points over the last 4.5 years &#8212; enabling anyone to see the individual tracks and fishing activity of every vessel along with its name and flag state.<br /><div><span><span><img height="323" src="https://lh6.googleusercontent.com/F6ZUi4GogmiDo0v-0qUwY_YBxT0ViVqelWxKPqhrgcRBmXpvSpQ98FQZbU9jWOK2riqg_gZWKcYRtof3kd5TSLSBVok6eYfc-2-3v2LvXrjuW9h6WOpxD6aP-8QjvW6hhrYz8SV9" width="575"></span></span></div><div><i>An individual vessel fishing off Madagascar</i></div><br />This data can help inform sustainable policy and identify suspicious behaviors for further investigation. By understanding what areas of the ocean are being heavily fished, agencies and governments can make important decisions about how much fishing should be allowed in any given area. Often, fish populations are so depleted that the only way to ensure they are replenished is to create &#8220;no take areas&#8221; where fishing is not allowed. Our hope is that this new technology can help governments and other organizations make decisions about which areas need protection and monitor if policies are respected.<br /><div><span><span><img height="323" src="https://lh3.googleusercontent.com/kIrm5XMuVXlJcZgIp4G-wBSiFzU3K3CSsDU9vqO_J3whI3_RGsOnjZ-r9v5-nWlm512mILOB-t11016xpoCNuShi0fuXkbKLftUpwtU0v_PrEMdsGwDQvKS2tkaB0kNNLJi0_Bnr" width="575"></span></span></div><div><i>Kiribati's Phoenix Island Protected Area transitioning from heavy tuna fishing to a protected area. </i></div><div><br /></div>Partners have already started using Global Fishing Watch and have committed to providing additional data sources for greater impact:<br /><br /><ul><li><b>Indonesia&#8217;s Minister of Fisheries and Marine Affairs</b>, Susi Pudjiastuti, has committed to making the government&#8217;s Vessel Monitoring System (VMS) public in Global Fishing Watch in 2017. Ibu Susi has been a progressive leader for transparency in fisheries with other governments now expressing similar interest to collaborate.</li><li><b>Food and Agriculture Organization of the United Nations</b> will collaborate on new research methodologies for reporting spatial fishery and vessel statistics, building on Global Fishing Watch and developing transparency tools to support their member states in improving the monitoring, control and surveillance of fishing activities.</li><li><b>Trace Register</b>, a seafood digital supply chain company, has committed to using Global Fishing Watch to verify catch documentation for its customers such as Whole Foods.</li><li><b>Bali Seafood</b>, the largest exporter of snapper from Indonesia, has teamed up with Pelagic Data Systems, manufacturers of cellular and solar powered tracking devices to bring the same transparency for small scale and artisanal fishing vessels, into Global Fishing Watch as part of a pilot program.</li></ul><br />We&#8217;ve also developed a Global Fishing Watch Research Program with <a href="http://www.globalfishingwatch.org/research-program">10 leading institutions</a> from around the world. By combining Google tools, methodologies, and datasets in a collaborative environment, they&#8217;re modeling <a href="http://science.sciencemag.org/content/351/6278/1148">economic, environmental, policy</a>, and climate change implications on fisheries at a scale not otherwise possible. <br /><br />Global Fishing Watch was not possible five years ago. From a technology perspective, satellites were just beginning to collect vessel positions over the open ocean, and the "global coverage" was spotty. There has been tremendous growth in machine learning with applications in new fields. Policy and regulatory frameworks have evolved, with the United States, European Union, and other nations and Regional Fishery Management Organizations now requiring that vessels broadcast their positions. Market forces and import laws are beginning to demand transparency and traceability, both as a positive differentiator and for risk management. All of these forces interact and shape each other.<br /><br />Today, Global Fishing Watch is an early preview of what is possible. We&#8217;re committed to continuing to build tools, partnerships, and access to information to help restore our abundant ocean for generations to come.<br /><br /><br />Go explore your ocean at <a href="http://www.globalfishingwatch.org/">www.globalfishingwatch.org</a><br /><br /><br />Posted By: Brian Sullivan, Google Lead - <a href="http://www.globalfishingwatch.org/">Global Fishing Watch</a>, Sr. Program Manager - <a href="https://www.google.com/earth/outreach/index.html">Google Ocean &#38; Earth Outreach</a><br /><br />]]></description>
				<content:encoded><![CDATA[<div style="text-align: center;"></div><br />The world’s oceans and fisheries are at a turning point. Over a billion people depend on wild-caught fish for their primary source of protein. Fisheries are intertwined with global food security, slave labor issues, livelihoods, sovereign wealth and biodiversity but our fisheries are being harvested beyond sustainable levels. Fish populations have already plummeted by 90 percent for some species within the last generation, and the human population is only growing larger. One in five fish entering global markets is harvested illegally, or is unreported or unregulated. But amidst all these sobering trends, we're also better equipped to face these challenges — thanks to the rise of technology, increased availability of information, and a growing international desire to create a sustainable future.<br /><br />Today, in partnership with <a href="http://oceana.org/">Oceana</a> and <a href="http://skytruth.org/">SkyTruth</a>, we’re launching <a href="http://globalfishingwatch.org/">Global Fishing Watch</a>, a beta technology platform intended to increase awareness of fisheries and influence sustainable policy through transparency. Global Fishing Watch combines cloud computing technology with satellite data to provide the world’s first global view of commercial fishing activities. It gives anyone around the world — citizens, governments, industry, and researchers — a free, simple, online platform to visualize, track, and share information about fishing activity worldwide.<br /><br /><div style="text-align: center;"><span id="docs-internal-guid-8f0dfe50-2ecf-ca43-46fa-de779a228ba7"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;"><img height="319" src="https://lh3.googleusercontent.com/84dEqyxQ_7WG2Eal-drkDjl1Wp8WigGS65ziAF2uPU_N7pfn_9hfrmr_yiV_iihhp8gdBacfON7Uv1pABCHF1oVAsHS4Vx7cXJJGrA54_ZtIWYrUs4jYqIENDdXqppFPkOCN6HIh" style="border: none; transform: rotate(0rad);" width="568" /></span></span></div><div style="text-align: center;"><i>Global Fishing Watch, the first global view of large scale commercial fishing activity over time</i></div><br />At any given time, there are about 200,000 vessels publicly broadcasting their location at sea through the Automatic Identification System (AIS). Their signals are picked up by dozens of satellites and thousands of terrestrial receivers. Global Fishing Watch runs this information — more than 22 million points of information per day — through machine learning classifiers to determine the type of ship (e.g., cargo, tug, sail, fishing), what kind of fishing gear (longline, purse seine, trawl) they’re using and where they’re fishing based on their movement patterns. To do this, our research partners and fishery experts have manually classified thousands of vessel tracks as training data to “teach” our algorithms what fishing looks like. We then apply that learning to the entire dataset — 37 billion points over the last 4.5 years — enabling anyone to see the individual tracks and fishing activity of every vessel along with its name and flag state.<br /><div style="text-align: center;"><span id="docs-internal-guid-8f0dfe50-2ed0-1e1a-31b7-5f83cbbe62b7"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="323" src="https://lh6.googleusercontent.com/F6ZUi4GogmiDo0v-0qUwY_YBxT0ViVqelWxKPqhrgcRBmXpvSpQ98FQZbU9jWOK2riqg_gZWKcYRtof3kd5TSLSBVok6eYfc-2-3v2LvXrjuW9h6WOpxD6aP-8QjvW6hhrYz8SV9" style="border: none; transform: rotate(0rad);" width="575" /></span></span></div><div style="text-align: center;"><i>An individual vessel fishing off Madagascar</i></div><br />This data can help inform sustainable policy and identify suspicious behaviors for further investigation. By understanding what areas of the ocean are being heavily fished, agencies and governments can make important decisions about how much fishing should be allowed in any given area. Often, fish populations are so depleted that the only way to ensure they are replenished is to create “no take areas” where fishing is not allowed. Our hope is that this new technology can help governments and other organizations make decisions about which areas need protection and monitor if policies are respected.<br /><div style="text-align: center;"><span id="docs-internal-guid-8f0dfe50-2ed0-6496-8dd4-4b87dba26888"><span style="color: #512da8; font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img height="323" src="https://lh3.googleusercontent.com/kIrm5XMuVXlJcZgIp4G-wBSiFzU3K3CSsDU9vqO_J3whI3_RGsOnjZ-r9v5-nWlm512mILOB-t11016xpoCNuShi0fuXkbKLftUpwtU0v_PrEMdsGwDQvKS2tkaB0kNNLJi0_Bnr" style="border: none; transform: rotate(0rad);" width="575" /></span></span></div><div style="text-align: center;"><i>Kiribati's Phoenix Island Protected Area transitioning from heavy tuna fishing to a protected area. </i></div><div style="text-align: center;"><br /></div>Partners have already started using Global Fishing Watch and have committed to providing additional data sources for greater impact:<br /><br /><ul><li><b>Indonesia’s Minister of Fisheries and Marine Affairs</b>, Susi Pudjiastuti, has committed to making the government’s Vessel Monitoring System (VMS) public in Global Fishing Watch in 2017. Ibu Susi has been a progressive leader for transparency in fisheries with other governments now expressing similar interest to collaborate.</li><li><b>Food and Agriculture Organization of the United Nations</b> will collaborate on new research methodologies for reporting spatial fishery and vessel statistics, building on Global Fishing Watch and developing transparency tools to support their member states in improving the monitoring, control and surveillance of fishing activities.</li><li><b>Trace Register</b>, a seafood digital supply chain company, has committed to using Global Fishing Watch to verify catch documentation for its customers such as Whole Foods.</li><li><b>Bali Seafood</b>, the largest exporter of snapper from Indonesia, has teamed up with Pelagic Data Systems, manufacturers of cellular and solar powered tracking devices to bring the same transparency for small scale and artisanal fishing vessels, into Global Fishing Watch as part of a pilot program.</li></ul><br />We’ve also developed a Global Fishing Watch Research Program with <a href="http://www.globalfishingwatch.org/research-program">10 leading institutions</a> from around the world. By combining Google tools, methodologies, and datasets in a collaborative environment, they’re modeling <a href="http://science.sciencemag.org/content/351/6278/1148">economic, environmental, policy</a>, and climate change implications on fisheries at a scale not otherwise possible. <br /><br />Global Fishing Watch was not possible five years ago. From a technology perspective, satellites were just beginning to collect vessel positions over the open ocean, and the "global coverage" was spotty. There has been tremendous growth in machine learning with applications in new fields. Policy and regulatory frameworks have evolved, with the United States, European Union, and other nations and Regional Fishery Management Organizations now requiring that vessels broadcast their positions. Market forces and import laws are beginning to demand transparency and traceability, both as a positive differentiator and for risk management. All of these forces interact and shape each other.<br /><br />Today, Global Fishing Watch is an early preview of what is possible. We’re committed to continuing to build tools, partnerships, and access to information to help restore our abundant ocean for generations to come.<br /><br /><br />Go explore your ocean at <a href="http://www.globalfishingwatch.org/">www.globalfishingwatch.org</a><br /><br /><br />Posted By: Brian Sullivan, Google Lead - <a href="http://www.globalfishingwatch.org/">Global Fishing Watch</a>, Sr. Program Manager - <a href="https://www.google.com/earth/outreach/index.html">Google Ocean &amp; Earth Outreach</a><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/mapping-global-fishing-activity-with-machine-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Making the most of the Google Maps Web Service APIs</title>
		<link>https://googledata.org/google-maps/making-the-most-of-the-google-maps-web-service-apis/</link>
		<comments>https://googledata.org/google-maps/making-the-most-of-the-google-maps-web-service-apis/#comments</comments>
		<pubDate>Thu, 15 Sep 2016 16:31:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=14a658761a7c6658bce270742bb2f60f</guid>
		<description><![CDATA[When it comes to app development, there can be a disconnect between the robust app we intended to build and the code we actually get into a minimum viable product. These shortcuts end up causing error conditions once under load in production.<br /><br />
The Google Maps API team maintains client libraries that give you the power to develop with the confidence that your app will scale smoothly. We provide client libraries for <a href="https://github.com/googlemaps/google-maps-services-python/" target="_blank">Python</a>, <a href="https://github.com/googlemaps/google-maps-services-java/" target="_blank">Java</a>, and <a href="https://github.com/googlemaps/google-maps-services-go/" target="_blank">Go</a>, which are used by thousands of developers around the world. We're excited to announce the recent addition of <a href="https://github.com/googlemaps/google-maps-services-js" target="_blank">Node.js</a> to the client library family. <br /><br />
When building mobile applications, it is a best practice to use native APIS like <a href="https://developers.google.com/places/android-api/" target="_blank">Places API for Android</a> and <a href="https://developers.google.com/places/ios-api/" target="_blank">Places API for iOS</a> where you can, but when you find that your use case requires data that is only available via the Google Maps APIs Web Services, such as <a href="https://developers.google.com/maps/documentation/elevation/start" target="_blank">Elevation</a>, then using these client libraries is the best way forward.<br /><br />
These libraries help you implement API request best practices such as:<br /><ul><li>Requests are sent at the default rate limit for each web service, but of course this is configurable.</li>
<li>The client libraries will automatically retry any request if the API sends a 5xx error. Retries use exponential back-off, which helps in the event of intermittent failures.</li>
<li>The client libraries make it easy to authenticate with your freely available API Key. Google Maps APIs Premium Plan customers can alternatively use their client ID and secret.</li>
<li>The Java and Go libraries return native objects for each of the API responses. The Python and Node.js libraries return the structure as it is received from the API.</li>
</ul>
The client libraries can help you in a variety of ways. One of them is exposing the result sets in a format that makes most sense for the language in question. For example, the Java and Go client libraries include object hierarchies that are type-safe representations of the potential results for each API. This  allows you to write code in the comfort of your editor with the knowledge that the compiler will catch any mistakes.<br /><a href="https://www.blogger.com/"></a><span></span><span></span><br />
With 3 million apps and websites using Google Maps APIs, we have an important tip for ensuring reliability when using web services: call APIs from a server rather than directly from Android or iOS. This secures your API key so that your quota can't be consumed by a bad actor, along with being able to add caching to handle common requests quickly.<br /><br />
A server instance acts as a proxy that takes requests from your Android and iOS apps and then forwards them to the Google Maps Web Service APIs on your app&#8217;s behalf. The easiest way to create a server side proxy is using the Google Maps Web Service client libraries from <a href="https://cloud.google.com/appengine/" target="_blank">Google App Engine</a> instances. For more detail, please watch Laurence Moroney&#8217;s Google I/O 2016 session &#8220;<a href="https://www.youtube.com/watch?v=QqOYZ5Yu47Y&#38;feature=youtu.be" target="_blank">Building geo services that scale</a>&#8221;.<br /><br />
You can learn more about the Google Maps API web services in our <a href="https://developers.google.com/maps/web-services/overview" target="_blank">documentation</a>. The easiest way to use these APIs and follow best practices is to use the <a href="https://developers.google.com/maps/web-services/client-library" target="_blank">Client Libraries for Google Maps Web Services</a>. Download the client libraries for <a href="https://github.com/googlemaps/google-maps-services-java" target="_blank">Java</a>, <a href="https://github.com/googlemaps/google-maps-services-python" target="_blank">Python</a>, <a href="https://github.com/googlemaps/google-maps-services-go/" target="_blank">Go</a> or <a href="https://github.com/googlemaps/google-maps-services-js" target="_blank">Node.js</a> from Github to start using them today!<br /><table><tbody><tr><td><br /><div>
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/VsCCQFmzQjjI1o0JVWtLF69SGkoFrdyBnHaibB731DlKt8dFPoZgF7C-FJMlKYXuJw6fbqOR8yWiShUaUz1XIGW7qVxE-VUatNkFUYNcCsTPOwHDj2kF6ffZ8JtS-HipXGutmrrV"></div>
</td>  <td><i>Posted by Brett Morgan, Developer Programs Engineer</i></td></tr></tbody></table><br /><span><span></span></span>]]></description>
				<content:encoded><![CDATA[When it comes to app development, there can be a disconnect between the robust app we intended to build and the code we actually get into a minimum viable product. These shortcuts end up causing error conditions once under load in production.<br />
<br />
The Google Maps API team maintains client libraries that give you the power to develop with the confidence that your app will scale smoothly. We provide client libraries for <a href="https://github.com/googlemaps/google-maps-services-python/" >Python</a>, <a href="https://github.com/googlemaps/google-maps-services-java/" >Java</a>, and <a href="https://github.com/googlemaps/google-maps-services-go/" >Go</a>, which are used by thousands of developers around the world. We're excited to announce the recent addition of <a href="https://github.com/googlemaps/google-maps-services-js" >Node.js</a> to the client library family. <br />
<br />
When building mobile applications, it is a best practice to use native APIS like <a href="https://developers.google.com/places/android-api/" >Places API for Android</a> and <a href="https://developers.google.com/places/ios-api/" >Places API for iOS</a> where you can, but when you find that your use case requires data that is only available via the Google Maps APIs Web Services, such as <a href="https://developers.google.com/maps/documentation/elevation/start" >Elevation</a>, then using these client libraries is the best way forward.<br />
<br />
These libraries help you implement API request best practices such as:<br />
<ul>
<li>Requests are sent at the default rate limit for each web service, but of course this is configurable.</li>
<li>The client libraries will automatically retry any request if the API sends a 5xx error. Retries use exponential back-off, which helps in the event of intermittent failures.</li>
<li>The client libraries make it easy to authenticate with your freely available API Key. Google Maps APIs Premium Plan customers can alternatively use their client ID and secret.</li>
<li>The Java and Go libraries return native objects for each of the API responses. The Python and Node.js libraries return the structure as it is received from the API.</li>
</ul>
The client libraries can help you in a variety of ways. One of them is exposing the result sets in a format that makes most sense for the language in question. For example, the Java and Go client libraries include object hierarchies that are type-safe representations of the potential results for each API. This  allows you to write code in the comfort of your editor with the knowledge that the compiler will catch any mistakes.<br />
<a href="https://www.blogger.com/"></a><span id="goog_393085923"></span><span id="goog_393085924"></span><br />
With 3 million apps and websites using Google Maps APIs, we have an important tip for ensuring reliability when using web services: call APIs from a server rather than directly from Android or iOS. This secures your API key so that your quota can't be consumed by a bad actor, along with being able to add caching to handle common requests quickly.<br />
<br />
A server instance acts as a proxy that takes requests from your Android and iOS apps and then forwards them to the Google Maps Web Service APIs on your app’s behalf. The easiest way to create a server side proxy is using the Google Maps Web Service client libraries from <a href="https://cloud.google.com/appengine/" >Google App Engine</a> instances. For more detail, please watch Laurence Moroney’s Google I/O 2016 session “<a href="https://www.youtube.com/watch?v=QqOYZ5Yu47Y&amp;feature=youtu.be" >Building geo services that scale</a>”.<br />
<br />
You can learn more about the Google Maps API web services in our <a href="https://developers.google.com/maps/web-services/overview" >documentation</a>. The easiest way to use these APIs and follow best practices is to use the <a href="https://developers.google.com/maps/web-services/client-library" >Client Libraries for Google Maps Web Services</a>. Download the client libraries for <a href="https://github.com/googlemaps/google-maps-services-java" >Java</a>, <a href="https://github.com/googlemaps/google-maps-services-python" >Python</a>, <a href="https://github.com/googlemaps/google-maps-services-go/" >Go</a> or <a href="https://github.com/googlemaps/google-maps-services-js" >Node.js</a> from Github to start using them today!<br />
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;">
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/VsCCQFmzQjjI1o0JVWtLF69SGkoFrdyBnHaibB731DlKt8dFPoZgF7C-FJMlKYXuJw6fbqOR8yWiShUaUz1XIGW7qVxE-VUatNkFUYNcCsTPOwHDj2kF6ffZ8JtS-HipXGutmrrV" style="border-radius: 50%; width: 80px;" /></div>
</td>  <td><i>Posted by Brett Morgan, Developer Programs Engineer</i></td></tr>
</tbody></table>
<br />
<span id="docs-internal-guid-06bb5e1c-2e5f-db36-0136-7065c332134d"><span style="color: #434343; font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"></span></span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/making-the-most-of-the-google-maps-web-service-apis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Hailing more ride service options in Google Maps</title>
		<link>https://googledata.org/google-earth/hailing-more-ride-service-options-in-google-maps/</link>
		<comments>https://googledata.org/google-earth/hailing-more-ride-service-options-in-google-maps/#comments</comments>
		<pubDate>Thu, 08 Sep 2016 15:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=7f6fb6ab329d48f5b0ed6bb9181301c3</guid>
		<description><![CDATA[Back in March, we <a href="https://maps.googleblog.com/2016/03/your-car-has-arrived-more-ways-to-get.html">introduced</a> a new way for people to find and compare the fastest ways to get around town by adding a new ride services tab when searching for directions in Google Maps. Today, we&#8217;re adding two more partners in the U.S., Lyft and Gett. Now Google Maps will display options from 9 ride-sharing partners in over 60 countries, allowing you to compare the fastest, most affordable ride near you, without having to download and open multiple apps. <br /><br />Say you&#8217;re looking to get from the High Line to Times Square in Manhattan. When typing these locations into the Google Maps app, you&#8217;ll see a ride services tab appear alongside driving, transit and walking directions. Just tap the icon and you&#8217;ll find fare estimates and pick up times from multiple ride service partners, depending on driver availability. We&#8217;ll also show various types of services offered by each partner&#8212; for instance Lyft may also show options for a Lyft Line ride.<br /><div><span><span><img height="320" src="https://lh3.googleusercontent.com/SQAm2JdTFHgrq--oVgybO7GrwaOnQnzMdUCtNSNAayjpYsIcB2i1wLEoi4l67yKCAYcXr_Co3C0quMRkjKqbLxhGA-38co51BP96J5JNQng6SkqQ2IMmXhXtGc0ut33rOMeUFaRN" width="177"><img alt="Bookaride Uber Lyft.png" height="320" src="https://lh6.googleusercontent.com/eH8j7MTGNWOxeTKZg_AsXTp6dO3IoQxdiWRqAjH3kdQfxZNR0nmXShYEnY6Z5iuETUeXYeylW1Y3DXcX1KRe5OAk7xXnq0DgPscwkkTKx-JmUX6h-5uOkPUsibf2mOQCir3yLT4Z" width="177"></span></span></div><div><i>The ride service tab updates automatically based on driver availability, estimated fare and ETA.</i></div><br />Ride options from Lyft will begin appearing across the U.S., while Gett will show availability within New York City. So the next time you find yourself with an appointment across the city, just open the Google Maps app on iOS or Android and take it for a spin.<br /><i><br /></i> <i>By Sara Torti, Senior Product Manager, Google Maps</i>]]></description>
				<content:encoded><![CDATA[Back in March, we <a href="https://maps.googleblog.com/2016/03/your-car-has-arrived-more-ways-to-get.html">introduced</a> a new way for people to find and compare the fastest ways to get around town by adding a new ride services tab when searching for directions in Google Maps. Today, we’re adding two more partners in the U.S., Lyft and Gett. Now Google Maps will display options from 9 ride-sharing partners in over 60 countries, allowing you to compare the fastest, most affordable ride near you, without having to download and open multiple apps. <br /><br />Say you’re looking to get from the High Line to Times Square in Manhattan. When typing these locations into the Google Maps app, you’ll see a ride services tab appear alongside driving, transit and walking directions. Just tap the icon and you’ll find fare estimates and pick up times from multiple ride service partners, depending on driver availability. We’ll also show various types of services offered by each partner— for instance Lyft may also show options for a Lyft Line ride.<br /><div style="text-align: center;"><span id="docs-internal-guid-020b9015-06eb-e7ae-447c-1d1acc30bf8d"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="320" src="https://lh3.googleusercontent.com/SQAm2JdTFHgrq--oVgybO7GrwaOnQnzMdUCtNSNAayjpYsIcB2i1wLEoi4l67yKCAYcXr_Co3C0quMRkjKqbLxhGA-38co51BP96J5JNQng6SkqQ2IMmXhXtGc0ut33rOMeUFaRN" style="border: none; transform: rotate(0rad);" width="177" /><img alt="Bookaride Uber Lyft.png" height="320" src="https://lh6.googleusercontent.com/eH8j7MTGNWOxeTKZg_AsXTp6dO3IoQxdiWRqAjH3kdQfxZNR0nmXShYEnY6Z5iuETUeXYeylW1Y3DXcX1KRe5OAk7xXnq0DgPscwkkTKx-JmUX6h-5uOkPUsibf2mOQCir3yLT4Z" style="border: none; font-size: 14.6667px; transform: rotate(0rad);" width="177" /></span></span></div><div style="text-align: center;"><i>The ride service tab updates automatically based on driver availability, estimated fare and ETA.</i></div><br />Ride options from Lyft will begin appearing across the U.S., while Gett will show availability within New York City. So the next time you find yourself with an appointment across the city, just open the Google Maps app on iOS or Android and take it for a spin.<br /><i><br /></i> <i>By Sara Torti, Senior Product Manager, Google Maps</i>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/hailing-more-ride-service-options-in-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Sheep View: Where there’s a wool, there’s a way</title>
		<link>https://googledata.org/google-earth/sheep-view-where-theres-a-wool-theres-a-way/</link>
		<comments>https://googledata.org/google-earth/sheep-view-where-theres-a-wool-theres-a-way/#comments</comments>
		<pubDate>Wed, 31 Aug 2016 12:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=6d798618f41b8a03b2cd12da60c3a1eb</guid>
		<description><![CDATA[Over the past three months, Durita Andreassen and a few friendly sheep equipped with solar-powered cameras strapped to their woolly backs set out to collect imagery of the Faroe Islands for Street View. The 18 Faroe Islands are home to just 50,000 people, but &#8212; fittingly for a country whose name means &#8220;Sheep Island&#8221; &#8212; there are 70,000 sheep roaming the green hills and volcanic cliffs of the archipelago. So when Durita decided to document the country for Street View, sheep weren&#8217;t a baaad place to start.<br /><span><span><img height="208" src="https://lh5.googleusercontent.com/Q8D-dRwjFkycDWgTPE0XlTrZlt588qD29Y283mF_9kOfjQ1mc7JQ_gxNOVGIIKNe39hOMq_-YK6t58ZX0hJRhNfAdOJBfufmoQ5hGZrNHDokyttKY0l5xHeJMoZ7KsDgbyM5XSQp" width="304"></span><span><img height="207" src="https://lh4.googleusercontent.com/blf5DFB3Ute9Qgt_bnIR-NYXUhS1HMX_wnAfn6tmG-k5NmGNpkdqG7-VVHlvAHfwYipBhFVixuiVo8Ixsmm8XagmOaXNDBT4h68dq-3bgSXBUj4xjSLFIuwFiMZ1GD7xEjEFv9Cy" width="309"></span></span><br /><div><span><span><a href="https://youtu.be/ywdqiyoQNgQ">SheepView360</a></span></span></div><div><br /></div>When we herd about the Sheep View project, we thought it was shear brilliance. So we decided to help the Faroese by supplying them with a Street View trekker and 360 cameras via our <a href="https://docs.google.com/a/google.com/forms/d/e/1FAIpQLSeMgMA6RnUjfNt4f16Qnk5i0M7wZ2HxXEpljoqDjvNXPSnN1Q/viewform">Street View camera loan program</a>. Last week, the Google Maps team arrived in the Faroe Islands to help train and equip the local community to capture even more (but slightly less woolly) Street View imagery.<br /><span><span></span></span><br /><span><span><img height="360" src="https://lh5.googleusercontent.com/3lQEZ0_Iv-mc-4mEiVDn4yPRz_Ofo9os4iZAzIteVld8XqmemKEpRzcG_fkvXos0VriLSn-05kPOnhjGFvljyJVzkyeAd4fc4Pc5wDnyoqJXBxxHE7y-EOd_6PDZallsbTqhZVZE" width="620"></span></span><br /><span><br /></span>Now that the Faroe Islands is supplied with a Trekker and 360 cameras, residents and tourists can assist the sheep in collecting Street View imagery of their beautiful lands using selfie-sticks, bikes, backpacks, cars, kayaks, horses, ships and even wheelbarrows. The Visit Faroe Islands office in T&#243;rshavn and Atlantic Airways at the airport will be lending out Street View 360 cameras to visitors willing to lend a hoof.<br /><span><span><img height="172" src="https://lh5.googleusercontent.com/lC3crI-mtmwkcLUv9cjX0oOdUPq_mSO56YdauJ-CpVcdQeKEG-87s-632ypTY_S9JxlCGUEZS4kIBmFzF3AaCbZk0wOTtqJzM7tsuKRP0pXdxilqpd6xd4Hz7gKb_3e2Dm3qqQ-7" width="633"></span></span><br />The Faroe Islands have shown us that even sheep can contribute to Street View. If your hometown or favorite hiking trail hasn&#8217;t made it into Google Maps yet, <a href="https://www.google.com/streetview/publish/">grab your own 360 camera</a> or apply to borrow one from us through our <a href="https://docs.google.com/a/google.com/forms/d/e/1FAIpQLSeMgMA6RnUjfNt4f16Qnk5i0M7wZ2HxXEpljoqDjvNXPSnN1Q/viewform">Street View camera loan program</a>. We&#8217;re excited to see what ewe map!<br /><div></div><div><br /></div><br /><i>Published By: David Castro Gonz&#225;lez de Vega - Google Maps Program Manager</i><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />]]></description>
				<content:encoded><![CDATA[Over the past three months, Durita Andreassen and a few friendly sheep equipped with solar-powered cameras strapped to their woolly backs set out to collect imagery of the Faroe Islands for Street View. The 18 Faroe Islands are home to just 50,000 people, but — fittingly for a country whose name means “Sheep Island” — there are 70,000 sheep roaming the green hills and volcanic cliffs of the archipelago. So when Durita decided to document the country for Street View, sheep weren’t a baaad place to start.<br /><span id="docs-internal-guid-716f47ea-ddc5-6917-21be-f1d11ebd93d6"><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img height="208" src="https://lh5.googleusercontent.com/Q8D-dRwjFkycDWgTPE0XlTrZlt588qD29Y283mF_9kOfjQ1mc7JQ_gxNOVGIIKNe39hOMq_-YK6t58ZX0hJRhNfAdOJBfufmoQ5hGZrNHDokyttKY0l5xHeJMoZ7KsDgbyM5XSQp" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="304" /></span><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img height="207" src="https://lh4.googleusercontent.com/blf5DFB3Ute9Qgt_bnIR-NYXUhS1HMX_wnAfn6tmG-k5NmGNpkdqG7-VVHlvAHfwYipBhFVixuiVo8Ixsmm8XagmOaXNDBT4h68dq-3bgSXBUj4xjSLFIuwFiMZ1GD7xEjEFv9Cy" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="309" /></span></span><br /><div style="text-align: center;"><span id="docs-internal-guid-716f47ea-ddc5-94d4-7b79-fc5f4212dbc7"><span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 13.3333px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><a href="https://youtu.be/ywdqiyoQNgQ" style="text-decoration: none;">SheepView360</a></span></span></div><div style="text-align: center;"><br /></div>When we herd about the Sheep View project, we thought it was shear brilliance. So we decided to help the Faroese by supplying them with a Street View trekker and 360 cameras via our <a href="https://docs.google.com/a/google.com/forms/d/e/1FAIpQLSeMgMA6RnUjfNt4f16Qnk5i0M7wZ2HxXEpljoqDjvNXPSnN1Q/viewform">Street View camera loan program</a>. Last week, the Google Maps team arrived in the Faroe Islands to help train and equip the local community to capture even more (but slightly less woolly) Street View imagery.<br /><span id="docs-internal-guid-716f47ea-ddcb-6a88-bbf0-14b6d7bd1cbf"><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"></span></span><br /><span id="docs-internal-guid-716f47ea-ddcb-94cb-3bb9-d04bdc5f325d"><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img height="360" src="https://lh5.googleusercontent.com/3lQEZ0_Iv-mc-4mEiVDn4yPRz_Ofo9os4iZAzIteVld8XqmemKEpRzcG_fkvXos0VriLSn-05kPOnhjGFvljyJVzkyeAd4fc4Pc5wDnyoqJXBxxHE7y-EOd_6PDZallsbTqhZVZE" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="620" /></span></span><br /><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><br /></span>Now that the Faroe Islands is supplied with a Trekker and 360 cameras, residents and tourists can assist the sheep in collecting Street View imagery of their beautiful lands using selfie-sticks, bikes, backpacks, cars, kayaks, horses, ships and even wheelbarrows. The Visit Faroe Islands office in Tórshavn and Atlantic Airways at the airport will be lending out Street View 360 cameras to visitors willing to lend a hoof.<br /><span id="docs-internal-guid-716f47ea-ddcb-d6b0-e0de-ac3886c1cae4"><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img height="172" src="https://lh5.googleusercontent.com/lC3crI-mtmwkcLUv9cjX0oOdUPq_mSO56YdauJ-CpVcdQeKEG-87s-632ypTY_S9JxlCGUEZS4kIBmFzF3AaCbZk0wOTtqJzM7tsuKRP0pXdxilqpd6xd4Hz7gKb_3e2Dm3qqQ-7" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="633" /></span></span><br />The Faroe Islands have shown us that even sheep can contribute to Street View. If your hometown or favorite hiking trail hasn’t made it into Google Maps yet, <a href="https://www.google.com/streetview/publish/">grab your own 360 camera</a> or apply to borrow one from us through our <a href="https://docs.google.com/a/google.com/forms/d/e/1FAIpQLSeMgMA6RnUjfNt4f16Qnk5i0M7wZ2HxXEpljoqDjvNXPSnN1Q/viewform">Street View camera loan program</a>. We’re excited to see what ewe map!<br /><div class="separator" style="clear: both; text-align: center;"><iframe width="320" height="266" class="YOUTUBE-iframe-video" data-thumbnail-src="https://i.ytimg.com/vi/ht_WB7iN0vw/0.jpg" src="https://www.youtube.com/embed/ht_WB7iN0vw?feature=player_embedded" frameborder="0" allowfullscreen></iframe></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><i>Published By: David Castro González de Vega - Google Maps Program Manager</i><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/sheep-view-where-theres-a-wool-theres-a-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Five Trending Roadside Attractions for Your End of Summer Road Trip</title>
		<link>https://googledata.org/google-earth/five-trending-roadside-attractions-for-your-end-of-summer-road-trip/</link>
		<comments>https://googledata.org/google-earth/five-trending-roadside-attractions-for-your-end-of-summer-road-trip/#comments</comments>
		<pubDate>Thu, 18 Aug 2016 12:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=11ea42007655d1b59ae95cb89c4e164a</guid>
		<description><![CDATA[Summer just isn&#8217;t complete without a road trip. Whether you cruise Route 66 from coast to coast or take a short drive out of the city, there are plenty of quirky attractions along the way. We looked at Google Maps data from the past few years to uncover which weird and wonderful roadside attractions are searched for more during the summer months than during the rest of the year. Here&#8217;s a curated list of some trending roadside gems across the country. <br /><br /><div><a href="https://3.bp.blogspot.com/-z5gCHAAwah0/V7TXiQuMp4I/AAAAAAAAE8o/EIe9R5vXVDgCyrlRJtzjZPITR5D_z4lOACLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B5.07.14%2BPM.png"><img border="0" height="350" src="https://3.bp.blogspot.com/-z5gCHAAwah0/V7TXiQuMp4I/AAAAAAAAE8o/EIe9R5vXVDgCyrlRJtzjZPITR5D_z4lOACLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B5.07.14%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/webhp?sourceid=chrome-instant&#38;ion=1&#38;espv=2&#38;ie=UTF-8#q=trees%20of%20mystery">Trees of Mystery: Klamath, California</a> </div><br />Roadtrippers leaving California for the beautiful Oregon landscape shouldn&#8217;t miss the Trees of Mystery attraction just 36 miles south of the Oregon border. Despite the name, the true showstoppers are the 49-foot-tall statue of Paul Bunyan and the 35-foot-tall Babe the Blue Ox &#8211; both of which are visible from Highway 101. <br /><br /><div><a href="https://4.bp.blogspot.com/-6V8BfCOmiGU/V7TXTZ2T0MI/AAAAAAAAE8k/G3BRmlPYJrU4kOg5VA7siMpySvxhNBcWQCLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B2.29.10%2BPM.png"><img border="0" height="358" src="https://4.bp.blogspot.com/-6V8BfCOmiGU/V7TXTZ2T0MI/AAAAAAAAE8k/G3BRmlPYJrU4kOg5VA7siMpySvxhNBcWQCLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B2.29.10%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/maps/uv?hl=en&#38;pb=!1s0x54906ab259528c69%3A0x2034aac2267a1e23!2m5!2m2!1i80!2i80!3m1!2i100!3m1!7e115!4s%2Fmaps%2Fplace%2Fthe%2Bgum%2Bwall%2Bseattle%2F%4047.6082568%2C-122.3402753%2C3a%2C75y%2C345.52h%2C90t%2Fdata%3D*213m4*211e1*213m2*211sUEW-iugf0T0bgR5avCqmOA*212e0*214m2*213m1*211s0x0%3A0x2034aac2267a1e23!5sthe%20gum%20wall%20seattle%20-%20Google%20Search&#38;imagekey=!1e2!2sUEW-iugf0T0bgR5avCqmOA&#38;sa=X&#38;ved=0ahUKEwj84fLN78bOAhUO8mMKHTdOBigQpx8IiwEwDg">The Gum Wall: Seattle, Washington</a></div><br />Downtown Seattle sports a notoriously sticky tourist attraction: a wall covered in gum. Although the wall was scrubbed clean back in 2015, it returned to all its glory in no time. Road trippers who find themselves at the famous Pike Place Market need only wander downstairs to Post Alley to behold the man-made (or chewed) marvel. <br /><br /><div><a href="https://3.bp.blogspot.com/-8fCHYglhrRw/V7TXHIc4M_I/AAAAAAAAE8g/239vqa7h4cYwkaa-VL3KMkpiCwBoCEXowCLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B4.39.47%2BPM.png"><img border="0" height="347" src="https://3.bp.blogspot.com/-8fCHYglhrRw/V7TXHIc4M_I/AAAAAAAAE8g/239vqa7h4cYwkaa-VL3KMkpiCwBoCEXowCLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B4.39.47%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/maps/place/Blue+Whale/@36.193776,-95.732799,3a,75y,90t/data=!3m8!1e2!3m6!1s56463044!2e1!3e10!6s%2F%2Flh6.googleusercontent.com%2Fproxy%2F_Cl6vhs6wFQkaOXLkPoUQxbhtGaOgYKX5XjPZRVDVvx0lQ12OnBMckMsG7jbzQwqzgUib-LxTAK_9xxgDfYJQ6PHop9tpQ%3Dw114-h86!7i4000!8i3000!4m12!1m6!3m5!1s0x87b6f5f5af1d471d:0x6f018baa1950a1e2!2sBlue+Whale!8m2!3d36.1938494!4d-95.7329193!3m4!1s0x87b6f5f5af1d471d:0x6f018baa1950a1e2!8m2!3d36.1938494!4d-95.7329193">The Blue Whale: Catoosa, Oklahoma</a></div><br />Just off Route 66, weary travelers can take a break to picnic, swim, or fish at the small lake that&#8217;s home to a big Blue Whale. To cool off from their long drives visitors fling themselves off his tail, slide down his fins and pose for photos in his open jaws. <br /><br /><div><a href="https://1.bp.blogspot.com/-rQ_GksurePE/V7TW5aUhqTI/AAAAAAAAE8c/rG2UMiCEM9wX182-F6IjYE0MljPAMbrTgCLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B2.16.29%2BPM.png"><img border="0" height="348" src="https://1.bp.blogspot.com/-rQ_GksurePE/V7TW5aUhqTI/AAAAAAAAE8c/rG2UMiCEM9wX182-F6IjYE0MljPAMbrTgCLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B2.16.29%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/maps/place/Lucy+the+Elephant/@39.3208351,-74.5139344,17z/data=!3m1!4b1!4m5!3m4!1s0x89c0eb904e2c1ff3:0x7dec4c186e20154a!8m2!3d39.3208351!4d-74.5117457">Lucy the Elephant: Margate City, New Jersey</a></div><br />Fewer than 30 minutes from Atlantic City, travelers can take in another larger than life creation &#8211; Lucy the Elephant. Lucy is a 132-year-old elephant-shaped building that towers six-stories tall. Visitors can enter the structure and climb up to the howdah (the carriage positioned on the back of an elephant) for a picturesque view of the beach below. <br /><br /><div><a href="https://3.bp.blogspot.com/-YaKLEszB0h0/V7TWn0lnQHI/AAAAAAAAE8Y/daFPPS23NUUKyt4jFWJAczKgq-VUeI3DgCLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B5.04.26%2BPM.png"><img border="0" height="350" src="https://3.bp.blogspot.com/-YaKLEszB0h0/V7TWn0lnQHI/AAAAAAAAE8Y/daFPPS23NUUKyt4jFWJAczKgq-VUeI3DgCLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B5.04.26%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/maps/place/The+Dinosaur+Place+at+Nature's+Art+Village/@41.4296932,-72.2178794,3a,75y,90t/data=!3m8!1e2!3m6!1s-_jQcgQFEOxI%2FVfhkRnphzoI%2FAAAAAAAAAT0%2Fi7vvQ4Q94lwMQthOmdO3EMCtZKflZWYeg!2e4!3e12!6s%2F%2Flh4.googleusercontent.com%2F-_jQcgQFEOxI%2FVfhkRnphzoI%2FAAAAAAAAAT0%2Fi7vvQ4Q94lwMQthOmdO3EMCtZKflZWYeg%2Fs203-k-no%2F!7i504!8i504!4m12!1m6!3m5!1s0x89e61375f9d53723:0x44efde67af891b11!2sThe+Dinosaur+Place+at+Nature's+Art+Village!8m2!3d41.4324776!4d-72.2226917!3m4!1s0x89e61375f9d53723:0x44efde67af891b11!8m2!3d41.4324776!4d-72.2226917!6m1!1e1">The Dinosaur Place: Montville, Connecticut</a></div><br />Take a short detour off I-95 in Connecticut to take a trip back in time to the Jurassic period. Northeastern roadtrippers will find 40 life-sized dinosaur figures on a 1.5-mile nature trail in The Dinosaur Place. And the best part is that they don&#8217;t have to worry about any real-life velociraptors. <br /><br />Next time you&#8217;re on a road trip, remember to take a break and explore the roadside attractions along your route. Google Maps can help you do just that with a variety of features like <a href="https://maps.googleblog.com/2016/08/get-around-town-little-easier-with-new.html">offline maps</a>, the ability to <a href="https://maps.googleblog.com/2016/02/easily-add-pit-stops-to-your-trips-all.html">search for places along your route</a>, and the option to <a href="https://maps.googleblog.com/2016/06/kick-off-your-summer-travels-with-these.html">create multi-stop trips</a> (now available on Android and iOS). After all, the <a href="https://www.google.com/maps/dir/Trees+of+Mystery,+U.S.+101,+Klamath,+CA/Gum+Wall,+Post+Alley,+Seattle,+WA/Blue+Whale,+North+Old+Highway+66,+Catoosa,+Oklahoma/Lucy+the+Elephant,+Atlantic+Avenue,+Margate+City,+NJ/The+Dinosaur+Place+at+Nature's+Art+Village,+Montville,+CT/@40.486252,-116.1403445,4z/data=!3m1!4b1!4m32!4m31!1m5!1m1!1s0x54d057540adc2b03:0xa9c95d56460e95d6!2m2!1d-124.0860523!2d41.5848811!1m5!1m1!1s0x54906ab259528c69:0x2034aac2267a1e23!2m2!1d-122.3403368!2d47.6084172!1m5!1m1!1s0x87b6f5f5af1d471d:0x6f018baa1950a1e2!2m2!1d-95.7329193!2d36.1938494!1m5!1m1!1s0x89c0eb904e2c1ff3:0x7dec4c186e20154a!2m2!1d-74.5117457!2d39.3208351!1m5!1m1!1s0x89e61375f9d53723:0x44efde67af891b11!2m2!1d-72.2226917!2d41.4324776!3e0">journey</a> can be just as much fun as the destination.<br /><br /><i>Posted by Pierre Petronin, Quantitative Analyst, Google Maps</i><br />]]></description>
				<content:encoded><![CDATA[Summer just isn’t complete without a road trip. Whether you cruise Route 66 from coast to coast or take a short drive out of the city, there are plenty of quirky attractions along the way. We looked at Google Maps data from the past few years to uncover which weird and wonderful roadside attractions are searched for more during the summer months than during the rest of the year. Here’s a curated list of some trending roadside gems across the country. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-z5gCHAAwah0/V7TXiQuMp4I/AAAAAAAAE8o/EIe9R5vXVDgCyrlRJtzjZPITR5D_z4lOACLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B5.07.14%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="350" src="https://3.bp.blogspot.com/-z5gCHAAwah0/V7TXiQuMp4I/AAAAAAAAE8o/EIe9R5vXVDgCyrlRJtzjZPITR5D_z4lOACLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B5.07.14%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/webhp?sourceid=chrome-instant&amp;ion=1&amp;espv=2&amp;ie=UTF-8#q=trees%20of%20mystery">Trees of Mystery: Klamath, California</a> </div><br />Roadtrippers leaving California for the beautiful Oregon landscape shouldn’t miss the Trees of Mystery attraction just 36 miles south of the Oregon border. Despite the name, the true showstoppers are the 49-foot-tall statue of Paul Bunyan and the 35-foot-tall Babe the Blue Ox – both of which are visible from Highway 101. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-6V8BfCOmiGU/V7TXTZ2T0MI/AAAAAAAAE8k/G3BRmlPYJrU4kOg5VA7siMpySvxhNBcWQCLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B2.29.10%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="358" src="https://4.bp.blogspot.com/-6V8BfCOmiGU/V7TXTZ2T0MI/AAAAAAAAE8k/G3BRmlPYJrU4kOg5VA7siMpySvxhNBcWQCLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B2.29.10%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/uv?hl=en&amp;pb=!1s0x54906ab259528c69%3A0x2034aac2267a1e23!2m5!2m2!1i80!2i80!3m1!2i100!3m1!7e115!4s%2Fmaps%2Fplace%2Fthe%2Bgum%2Bwall%2Bseattle%2F%4047.6082568%2C-122.3402753%2C3a%2C75y%2C345.52h%2C90t%2Fdata%3D*213m4*211e1*213m2*211sUEW-iugf0T0bgR5avCqmOA*212e0*214m2*213m1*211s0x0%3A0x2034aac2267a1e23!5sthe%20gum%20wall%20seattle%20-%20Google%20Search&amp;imagekey=!1e2!2sUEW-iugf0T0bgR5avCqmOA&amp;sa=X&amp;ved=0ahUKEwj84fLN78bOAhUO8mMKHTdOBigQpx8IiwEwDg">The Gum Wall: Seattle, Washington</a></div><br />Downtown Seattle sports a notoriously sticky tourist attraction: a wall covered in gum. Although the wall was scrubbed clean back in 2015, it returned to all its glory in no time. Road trippers who find themselves at the famous Pike Place Market need only wander downstairs to Post Alley to behold the man-made (or chewed) marvel. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-8fCHYglhrRw/V7TXHIc4M_I/AAAAAAAAE8g/239vqa7h4cYwkaa-VL3KMkpiCwBoCEXowCLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B4.39.47%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="347" src="https://3.bp.blogspot.com/-8fCHYglhrRw/V7TXHIc4M_I/AAAAAAAAE8g/239vqa7h4cYwkaa-VL3KMkpiCwBoCEXowCLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B4.39.47%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/place/Blue+Whale/@36.193776,-95.732799,3a,75y,90t/data=!3m8!1e2!3m6!1s56463044!2e1!3e10!6s%2F%2Flh6.googleusercontent.com%2Fproxy%2F_Cl6vhs6wFQkaOXLkPoUQxbhtGaOgYKX5XjPZRVDVvx0lQ12OnBMckMsG7jbzQwqzgUib-LxTAK_9xxgDfYJQ6PHop9tpQ%3Dw114-h86!7i4000!8i3000!4m12!1m6!3m5!1s0x87b6f5f5af1d471d:0x6f018baa1950a1e2!2sBlue+Whale!8m2!3d36.1938494!4d-95.7329193!3m4!1s0x87b6f5f5af1d471d:0x6f018baa1950a1e2!8m2!3d36.1938494!4d-95.7329193">The Blue Whale: Catoosa, Oklahoma</a></div><br />Just off Route 66, weary travelers can take a break to picnic, swim, or fish at the small lake that’s home to a big Blue Whale. To cool off from their long drives visitors fling themselves off his tail, slide down his fins and pose for photos in his open jaws. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-rQ_GksurePE/V7TW5aUhqTI/AAAAAAAAE8c/rG2UMiCEM9wX182-F6IjYE0MljPAMbrTgCLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B2.16.29%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="348" src="https://1.bp.blogspot.com/-rQ_GksurePE/V7TW5aUhqTI/AAAAAAAAE8c/rG2UMiCEM9wX182-F6IjYE0MljPAMbrTgCLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B2.16.29%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/place/Lucy+the+Elephant/@39.3208351,-74.5139344,17z/data=!3m1!4b1!4m5!3m4!1s0x89c0eb904e2c1ff3:0x7dec4c186e20154a!8m2!3d39.3208351!4d-74.5117457">Lucy the Elephant: Margate City, New Jersey</a></div><br />Fewer than 30 minutes from Atlantic City, travelers can take in another larger than life creation – Lucy the Elephant. Lucy is a 132-year-old elephant-shaped building that towers six-stories tall. Visitors can enter the structure and climb up to the howdah (the carriage positioned on the back of an elephant) for a picturesque view of the beach below. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-YaKLEszB0h0/V7TWn0lnQHI/AAAAAAAAE8Y/daFPPS23NUUKyt4jFWJAczKgq-VUeI3DgCLcB/s1600/Screen%2BShot%2B2016-08-16%2Bat%2B5.04.26%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="350" src="https://3.bp.blogspot.com/-YaKLEszB0h0/V7TWn0lnQHI/AAAAAAAAE8Y/daFPPS23NUUKyt4jFWJAczKgq-VUeI3DgCLcB/s640/Screen%2BShot%2B2016-08-16%2Bat%2B5.04.26%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/place/The+Dinosaur+Place+at+Nature's+Art+Village/@41.4296932,-72.2178794,3a,75y,90t/data=!3m8!1e2!3m6!1s-_jQcgQFEOxI%2FVfhkRnphzoI%2FAAAAAAAAAT0%2Fi7vvQ4Q94lwMQthOmdO3EMCtZKflZWYeg!2e4!3e12!6s%2F%2Flh4.googleusercontent.com%2F-_jQcgQFEOxI%2FVfhkRnphzoI%2FAAAAAAAAAT0%2Fi7vvQ4Q94lwMQthOmdO3EMCtZKflZWYeg%2Fs203-k-no%2F!7i504!8i504!4m12!1m6!3m5!1s0x89e61375f9d53723:0x44efde67af891b11!2sThe+Dinosaur+Place+at+Nature's+Art+Village!8m2!3d41.4324776!4d-72.2226917!3m4!1s0x89e61375f9d53723:0x44efde67af891b11!8m2!3d41.4324776!4d-72.2226917!6m1!1e1">The Dinosaur Place: Montville, Connecticut</a></div><br />Take a short detour off I-95 in Connecticut to take a trip back in time to the Jurassic period. Northeastern roadtrippers will find 40 life-sized dinosaur figures on a 1.5-mile nature trail in The Dinosaur Place. And the best part is that they don’t have to worry about any real-life velociraptors. <br /><br />Next time you’re on a road trip, remember to take a break and explore the roadside attractions along your route. Google Maps can help you do just that with a variety of features like <a href="https://maps.googleblog.com/2016/08/get-around-town-little-easier-with-new.html">offline maps</a>, the ability to <a href="https://maps.googleblog.com/2016/02/easily-add-pit-stops-to-your-trips-all.html">search for places along your route</a>, and the option to <a href="https://maps.googleblog.com/2016/06/kick-off-your-summer-travels-with-these.html">create multi-stop trips</a> (now available on Android and iOS). After all, the <a href="https://www.google.com/maps/dir/Trees+of+Mystery,+U.S.+101,+Klamath,+CA/Gum+Wall,+Post+Alley,+Seattle,+WA/Blue+Whale,+North+Old+Highway+66,+Catoosa,+Oklahoma/Lucy+the+Elephant,+Atlantic+Avenue,+Margate+City,+NJ/The+Dinosaur+Place+at+Nature's+Art+Village,+Montville,+CT/@40.486252,-116.1403445,4z/data=!3m1!4b1!4m32!4m31!1m5!1m1!1s0x54d057540adc2b03:0xa9c95d56460e95d6!2m2!1d-124.0860523!2d41.5848811!1m5!1m1!1s0x54906ab259528c69:0x2034aac2267a1e23!2m2!1d-122.3403368!2d47.6084172!1m5!1m1!1s0x87b6f5f5af1d471d:0x6f018baa1950a1e2!2m2!1d-95.7329193!2d36.1938494!1m5!1m1!1s0x89c0eb904e2c1ff3:0x7dec4c186e20154a!2m2!1d-74.5117457!2d39.3208351!1m5!1m1!1s0x89e61375f9d53723:0x44efde67af891b11!2m2!1d-72.2226917!2d41.4324776!3e0">journey</a> can be just as much fun as the destination.<br /><br /><i>Posted by Pierre Petronin, Quantitative Analyst, Google Maps</i><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/five-trending-roadside-attractions-for-your-end-of-summer-road-trip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>New JavaScript Street View renderer brings rendering improvements and better mobile support</title>
		<link>https://googledata.org/google-maps/new-javascript-street-view-renderer-brings-rendering-improvements-and-better-mobile-support/</link>
		<comments>https://googledata.org/google-maps/new-javascript-street-view-renderer-brings-rendering-improvements-and-better-mobile-support/#comments</comments>
		<pubDate>Thu, 18 Aug 2016 00:05:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=f621f4e7249b42187362f1d2efb228cb</guid>
		<description><![CDATA[Street View is one of Google Maps&#8217; most loved features, providing users with a way to explore and experience the world around them. Developers all over the world use Street View in the Google Maps JavaScript API to make their apps more unique and exciting, giving their users a sense of what it&#8217;s like to visit a place in real life. <br /><br />
Today we&#8217;re making Street View even better, especially on mobile devices, by launching a new Street View renderer in the Google Maps JavaScript API. Read on for the full details of what we&#8217;ve improved!<br /><br /><h3>
Better display</h3>
<h4>
Smoother Transitions</h4>
Transitions from one point to another in Street View now include more animation frames, creating the effect of gliding smoothly to the next location. Transitions in the old renderer looked like jumping from one location to another.<br /><br /><div dir="ltr">
<table><colgroup><col width="360"><col width="359"></colgroup><tbody><tr><td><div dir="ltr">
<span><span>Old renderer</span></span></div>
</td><td><div dir="ltr">
<span><span>New renderer</span></span></div>
</td></tr><tr><td><img alt="next-old-short.gif" height="200" src="https://lh3.googleusercontent.com/vs1N2akdnqZJLcO73xv9F5F_jDIarAMA8RbtvsPZCMnJWUeHmOMcyTOh0HI5XXbMIUw-N9GoTm4nSDz63EMeazd8tSlPOxIM17WurMZ3aBUtK8xZFzAr8IrP2uFDWfRv1e61sXlO" width="320"></td><td><img alt="next-new-short.gif" height="200" src="https://lh5.googleusercontent.com/QV6p9LnkjLDIOy6qRNh6ParKnHVdUly2-xq7jd4rG9kMZ9SHWAAYzaWmjuEnLYnjonUkUsEliwfmAXLvqfv1pJPsfJX2zk_9TPSC7ssdm6P4q5FII30qKirgwiICY18KOtFG-FJW" width="320"></td></tr></tbody></table></div>
<br /><h4>
Smoother Loading Animations</h4>
The old renderer repeats images while loading new content, resulting in a stuttering effect. The new renderer uses lower resolution imagery while loading, resulting in a smoother animation when rotating an image in Street View.<br /><br /><div dir="ltr">
<table><colgroup><col width="360"><col width="359"></colgroup><tbody><tr><td><div dir="ltr">
<span><span>Old renderer</span></span></div>
</td><td><div dir="ltr">
<span><span>New renderer</span></span></div>
</td></tr><tr><td><div dir="ltr">
<span><img alt="old.gif" height="200" src="https://lh6.googleusercontent.com/2VehNMbzJX1O16jVko2K6wsGXqiM_scPrX1HTJr4rpmKJQA0-JVmW6EKFM9ytULj62Fscs7zUjvf0gY5DTkjoAX47SHR9_9964xfZ37wAkTLLoICiLEn98gxXPNfpokiJLLimzKs" width="320"></span></div>
</td><td><div dir="ltr">
<span><img alt="new.gif" height="200" src="https://lh3.googleusercontent.com/fxEiucnJJVriI3SxhXf8vtQTU3AQzLTQWrQFCEUsRYZUY6vKGyucNukvmLhBz9RvTLding48ygZzqwaZRYvWEzpaOyB3sqOrynd6mKlsspRGGHQHoN6duCVLfEvIL2c0H6NN6tD8" width="320"></span></div>
</td></tr></tbody></table></div>
<h4>
Object modeling improvements</h4>
Objects in Street View look better in the new renderer because it builds a 360-degree model that considers all possible perspectives. For example, this high rise building has wavy lines in the old renderer, as opposed to crisp lines in the new renderer.<br /><br /><div dir="ltr">
<table><colgroup><col width="360"><col width="359"></colgroup><tbody><tr><td><div dir="ltr">
<span><span>Old renderer</span></span></div>
</td><td><div dir="ltr">
<span><span>New renderer</span></span></div>
</td></tr><tr><td><img height="200" src="https://lh6.googleusercontent.com/feZmtVtffsfPNvYUU4EGdRtb7lOLAVc_XgiPJXNmKPDTaI-AXEiBzyeUqbO2XjoHP4x8YCvVRQboV8hBE0av6wWiJdWluItva86gl0uSa1qT0HMYALMkJ5FvcWqzQvtSxjaTeL9K" width="320"></td><td><img height="200" src="https://lh3.googleusercontent.com/6zn1tbKetmlniikA6aqpL1_xxroTeeeW9SYh7GqXsMDgWxcpIK0278IGN8IyR6y6A_SFUe4afTWz9gjP-VTR81QZC_aJ56sukx8Rq9nnXiX8UshDI6_hBSnRPYgZK8VcZjKKsLjc" width="320"></td></tr></tbody></table></div>
<br />
In another example: for imagery on an incline, such as a street with a steep hill, the new renderer corrects the objects to be vertical, whereas the old renderer would have shown the objects at an angle.<br /><br /><div dir="ltr">
<table><colgroup><col width="360"><col width="359"></colgroup><tbody><tr><td><div dir="ltr">
<span><span>Old renderer</span></span></div>
</td><td><div dir="ltr">
<span><span>New renderer</span></span></div>
</td></tr><tr><td><img height="200" src="https://lh3.googleusercontent.com/5WUWEZfgxW_2X4w1nkMZvBPWlVKtJAtqGSTM1wWRG03lMsu22EJtvDcbKAjR1oWYoVHtiT5UWLpyfDdgNUtXrXWwTiM-k0qXbrF49iOV2Dt04uJtrEnl-C4zc2JkF1xoEMZObsPc" width="320"></td><td><img height="200" src="https://lh6.googleusercontent.com/QK_jFeB_u_B6f_102piuLDXD3Z4_y7GNgjZji0iKc1PRWG8iSjsDqIpV6c-fXlfM_6GGWgf3574Qq2OBQVRLHt2YqZsF-7D601A9gEBF6kQcBVFuAB4IM4tPdBLdv-ScBm_2PRn9" width="320"></td></tr></tbody></table></div>
<h3>
Better mobile support</h3>
<h4>
WebGL imagery</h4>
The new renderer uses WebGL (on <a href="https://en.wikipedia.org/wiki/WebGL#Support">browsers that support it</a>) which results in a higher frame rate and better rendering, especially on mobile devices. On mobile devices, the old renderer would display a fish-eye projection of the image, whereas WebGL allows us to present a rendered sphere that looks as it would in reality. For example, the street in the image below is straight, but the old renderer made it look curved on mobile devices.<br /><div dir="ltr">
<span></span><br /><div dir="ltr">
<table><colgroup><col width="360"><col width="359"></colgroup><tbody><tr><td><div dir="ltr">
<span>Old renderer</span></div>
</td><td><div dir="ltr">
<span>New renderer</span></div>
</td></tr><tr><td><div dir="ltr">
<span><img alt="WebGL_before.png" height="200" src="https://lh5.googleusercontent.com/BY3qrzNW0RzISArkYg3kYUDTZRbkHCBZ9fzxneHdUlytm7kBwNr-THvhFyP7QCsL9gcr8S5x-9FwvRw8XCqkejhmsd8XMPCWxLRpcUsqHf05lRzrX8YKwRDGqVAMMJU4_9rAxcl-" width="320"></span></div>
</td><td><div dir="ltr">
<span><img alt="WebGL_after.png" height="200" src="https://lh6.googleusercontent.com/Q2jMLejW_o0okCGKimK7qBYSEtP4huI5Fo8v8ZvcsizZADcF1YWZagcgaTw9oao3j33Y4vBpFhPGPlC2YSSmEGD9ZMEhJvI9aLAOoD234WER-Vpj_PdkDaC9WeZW8-CfdZQq10_h" width="320"></span></div>
</td></tr></tbody></table></div>
</div>
<h4>
Touch support</h4>
As mobile web usage grows, users expect familiar touch-based interactions to work everywhere. The new renderer supports the same natural touch-based gestures on mobile which have been available in the Google Maps Android app: pinch-to-zoom and double-tap-to-go. In the old renderer, zooming was only available through the +/- buttons, and movement was only possible by clicking the arrows on the ground.<br /><br /><h4>
Motion tracking on mobile devices</h4>
Mobile devices give developers the opportunity to provide their users with more natural ways to explore and interact with their applications. We&#8217;ve enabled support for device orientation events on Street View so that users on mobile devices can look around in Street View by moving their phone. Developers have the option to turn this off if they prefer. Please see the <a href="https://developers.google.com/maps/documentation/javascript/streetview?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=#motion-tracking" target="_blank">developer documentation</a><span></span><span></span><a href="https://www.blogger.com/"></a> for more details, or open the documentation link on a mobile device to see motion tracking in action. <br /><br /><h3>
Better controls</h3>
<h4>
X Forward</h4>
When using a desktop device with a mouse or trackpad, users will see a small "X" at the cursor location that indicates the next camera location if they choose to move forward. Arrows indicate the direction of movement. Wall rectangles identify the direction the camera will point towards.<br /><br /><div dir="ltr">
<table><colgroup><col width="360"><col width="359"></colgroup><tbody><tr><td><div dir="ltr">
<span>Next image targets</span></div>
</td><td><div dir="ltr">
<span>Next centered image target</span></div>
</td></tr><tr><td><div dir="ltr">
<span><img height="200" src="https://lh4.googleusercontent.com/bSeHEipDYtEiFOBNMMeRQw-LGDNJ0aETTDUmG_7yYwVH4cQuNLBRzwcqfuYNkydy4kCqhb441Xt8V0zhIUObGlPGehfqCmLfaL9mpf07NAsc2t9dzHvoOf0kr9VtDenvGZ9_OYZa" width="320"></span></div>
</td><td><div dir="ltr">
<span><img height="200" src="https://lh4.googleusercontent.com/dggZUDqruDnihSTkSwOwycRC6pEOoXErmZJvi7jtV0cFbu9PEVW-zYZs8NzbfVbpevoK5Jcave8gxBJEx71ZhYcLghIpCxZWDTx1KFWw-1iF0KJoHalFSGrnF5ynAlstweLaaADd" width="320"></span></div>
</td></tr></tbody></table></div>
<h4>
Cleaner street names, labels and targets</h4>
Street names and labels are now separated from controls, removing overlap issues and allowing for clean display in right-to-left and left-to-right languages.<br /><br /><div dir="ltr">
<table><colgroup><col width="360"><col width="359"></colgroup><tbody><tr><td><div dir="ltr">
<span>Old renderer</span></div>
</td><td><div dir="ltr">
<span>New renderer</span></div>
</td></tr><tr><td><div dir="ltr">
<span><img height="200" src="https://lh3.googleusercontent.com/9mBLz3mhqYvECS0HwRigC6OQsjDrnQTY7JeJvNr1-0ggpDIURhdb1v-vBy6bmdlFP1VceVQgbyj-WeOoefVPxOS_haXYHOYtHSNOP7PWfsbOyKY3mMoEl1uPG4urW8XMJQPCloAw" width="320"></span></div>
</td><td><div dir="ltr">
<span><img height="200" src="https://lh6.googleusercontent.com/ML56mnoHEYZF0ruzUOiE3BC4VYjQsFblsEUVhNmowNzZEOwPhIec3FF0x2dGfVLDk2PW_UD6XALO_9YYtLo--I6XM-wcUMpc2HtrkOFGddgfEnylABR3AuZdHiGT3AE0asf31nSI" width="320"></span></div>
</td></tr></tbody></table></div>
We hope you enjoy using the new and improved Street View renderer! Also a big thank you to all the developers who use the Google Maps JavaScript API and provide feedback via the <a href="https://code.google.com/p/gmaps-api-issues/?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">issue tracker</a>. Getting feedback from developers is vital for us to be able to keep improving our products, so if you have any bug reports or feature requests, please let us know!<br /><br />
For more information on Street View in the Google Maps JavaScript API, please see the <a href="https://developers.google.com/maps/documentation/javascript/streetview?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=#motion-tracking" target="_blank">developer documentation</a>.<br /><table><tbody><tr><td><br /><div>
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/mbzhN4UgcBZWGmNITagTVcFZZBsOqxRKXwzK6231tfvjiRMN0JwZYDL--z0X3qgQUmvW-e5c9qZwETINRrS4i1whh9LwqRcM27pTVPGhePv1WmWRxC3_twbglXD3wFXPshuSPnuT"></div>
</td>  <td><i>Posted by Elena Kelareva, Product Manager, Google Maps APIs</i></td></tr></tbody></table><br />]]></description>
				<content:encoded><![CDATA[Street View is one of Google Maps’ most loved features, providing users with a way to explore and experience the world around them. Developers all over the world use Street View in the Google Maps JavaScript API to make their apps more unique and exciting, giving their users a sense of what it’s like to visit a place in real life. <br />
<br />
Today we’re making Street View even better, especially on mobile devices, by launching a new Street View renderer in the Google Maps JavaScript API. Read on for the full details of what we’ve improved!<br />
<br />
<h3>
Better display</h3>
<h4>
Smoother Transitions</h4>
Transitions from one point to another in Street View now include more animation frames, creating the effect of gliding smoothly to the next location. Transitions in the old renderer looked like jumping from one location to another.<br />
<br />
<div dir="ltr" style="margin-left: 0pt;">
<table style="border-collapse: collapse; border: none;"><colgroup><col width="360"></col><col width="359"></col></colgroup><tbody>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">Old renderer</span></span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">New renderer</span></span></div>
</td></tr>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><img alt="next-old-short.gif" height="200" src="https://lh3.googleusercontent.com/vs1N2akdnqZJLcO73xv9F5F_jDIarAMA8RbtvsPZCMnJWUeHmOMcyTOh0HI5XXbMIUw-N9GoTm4nSDz63EMeazd8tSlPOxIM17WurMZ3aBUtK8xZFzAr8IrP2uFDWfRv1e61sXlO" style="border: none; font-family: 'open sans'; font-size: 13.3333px; font-weight: 700; line-height: 1.2; text-align: center; transform: rotate(0rad); white-space: pre-wrap;" width="320" /></td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><img alt="next-new-short.gif" height="200" src="https://lh5.googleusercontent.com/QV6p9LnkjLDIOy6qRNh6ParKnHVdUly2-xq7jd4rG9kMZ9SHWAAYzaWmjuEnLYnjonUkUsEliwfmAXLvqfv1pJPsfJX2zk_9TPSC7ssdm6P4q5FII30qKirgwiICY18KOtFG-FJW" style="border: none; font-family: 'open sans'; font-size: 13.3333px; font-weight: 700; line-height: 1.2; text-align: center; transform: rotate(0rad); white-space: pre-wrap;" width="320" /></td></tr>
</tbody></table>
</div>
<br />
<h4>
Smoother Loading Animations</h4>
The old renderer repeats images while loading new content, resulting in a stuttering effect. The new renderer uses lower resolution imagery while loading, resulting in a smoother animation when rotating an image in Street View.<br />
<br />
<div dir="ltr" style="margin-left: 0pt;">
<table style="border-collapse: collapse; border: none;"><colgroup><col width="360"></col><col width="359"></col></colgroup><tbody>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">Old renderer</span></span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">New renderer</span></span></div>
</td></tr>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img alt="old.gif" height="200" src="https://lh6.googleusercontent.com/2VehNMbzJX1O16jVko2K6wsGXqiM_scPrX1HTJr4rpmKJQA0-JVmW6EKFM9ytULj62Fscs7zUjvf0gY5DTkjoAX47SHR9_9964xfZ37wAkTLLoICiLEn98gxXPNfpokiJLLimzKs" style="border: none; transform: rotate(0rad);" width="320" /></span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img alt="new.gif" height="200" src="https://lh3.googleusercontent.com/fxEiucnJJVriI3SxhXf8vtQTU3AQzLTQWrQFCEUsRYZUY6vKGyucNukvmLhBz9RvTLding48ygZzqwaZRYvWEzpaOyB3sqOrynd6mKlsspRGGHQHoN6duCVLfEvIL2c0H6NN6tD8" style="border: none; transform: rotate(0rad);" width="320" /></span></div>
</td></tr>
</tbody></table>
</div>
<h4>
Object modeling improvements</h4>
Objects in Street View look better in the new renderer because it builds a 360-degree model that considers all possible perspectives. For example, this high rise building has wavy lines in the old renderer, as opposed to crisp lines in the new renderer.<br />
<br />
<div dir="ltr" style="margin-left: 0pt;">
<table style="border-collapse: collapse; border: none;"><colgroup><col width="360"></col><col width="359"></col></colgroup><tbody>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">Old renderer</span></span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">New renderer</span></span></div>
</td></tr>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><img height="200" src="https://lh6.googleusercontent.com/feZmtVtffsfPNvYUU4EGdRtb7lOLAVc_XgiPJXNmKPDTaI-AXEiBzyeUqbO2XjoHP4x8YCvVRQboV8hBE0av6wWiJdWluItva86gl0uSa1qT0HMYALMkJ5FvcWqzQvtSxjaTeL9K" style="border: none; font-family: 'open sans'; font-size: 13.3333px; line-height: 1.2; transform: rotate(0rad); white-space: pre-wrap;" width="320" /></td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><img height="200" src="https://lh3.googleusercontent.com/6zn1tbKetmlniikA6aqpL1_xxroTeeeW9SYh7GqXsMDgWxcpIK0278IGN8IyR6y6A_SFUe4afTWz9gjP-VTR81QZC_aJ56sukx8Rq9nnXiX8UshDI6_hBSnRPYgZK8VcZjKKsLjc" style="border: none; font-family: 'open sans'; font-size: 13.3333px; line-height: 1.2; transform: rotate(0rad); white-space: pre-wrap;" width="320" /></td></tr>
</tbody></table>
</div>
<br />
In another example: for imagery on an incline, such as a street with a steep hill, the new renderer corrects the objects to be vertical, whereas the old renderer would have shown the objects at an angle.<br />
<br />
<div dir="ltr" style="margin-left: 0pt;">
<table style="border-collapse: collapse; border: none;"><colgroup><col width="360"></col><col width="359"></col></colgroup><tbody>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">Old renderer</span></span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-size: 13.3333px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">New renderer</span></span></div>
</td></tr>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><img height="200" src="https://lh3.googleusercontent.com/5WUWEZfgxW_2X4w1nkMZvBPWlVKtJAtqGSTM1wWRG03lMsu22EJtvDcbKAjR1oWYoVHtiT5UWLpyfDdgNUtXrXWwTiM-k0qXbrF49iOV2Dt04uJtrEnl-C4zc2JkF1xoEMZObsPc" style="border: none; font-family: 'open sans'; font-size: 13.3333px; line-height: 1.2; transform: rotate(0rad); white-space: pre-wrap;" width="320" /></td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><img height="200" src="https://lh6.googleusercontent.com/QK_jFeB_u_B6f_102piuLDXD3Z4_y7GNgjZji0iKc1PRWG8iSjsDqIpV6c-fXlfM_6GGWgf3574Qq2OBQVRLHt2YqZsF-7D601A9gEBF6kQcBVFuAB4IM4tPdBLdv-ScBm_2PRn9" style="border: none; font-family: 'open sans'; font-size: 13.3333px; line-height: 1.2; transform: rotate(0rad); white-space: pre-wrap;" width="320" /></td></tr>
</tbody></table>
</div>
<h3>
Better mobile support</h3>
<h4>
WebGL imagery</h4>
The new renderer uses WebGL (on <a href="https://en.wikipedia.org/wiki/WebGL#Support">browsers that support it</a>) which results in a higher frame rate and better rendering, especially on mobile devices. On mobile devices, the old renderer would display a fish-eye projection of the image, whereas WebGL allows us to present a rendered sphere that looks as it would in reality. For example, the street in the image below is straight, but the old renderer made it look curved on mobile devices.<br />
<div dir="ltr" style="margin-left: 0pt;">
<span id="docs-internal-guid-441317e1-e45c-3067-40b1-080382e2793f"></span><br />
<div dir="ltr" style="margin-left: 0pt;">
<table style="border-collapse: collapse; border: none;"><colgroup><col width="360"></col><col width="359"></col></colgroup><tbody>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: 13.3333px; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">Old renderer</span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: 13.3333px; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">New renderer</span></div>
</td></tr>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img alt="WebGL_before.png" height="200" src="https://lh5.googleusercontent.com/BY3qrzNW0RzISArkYg3kYUDTZRbkHCBZ9fzxneHdUlytm7kBwNr-THvhFyP7QCsL9gcr8S5x-9FwvRw8XCqkejhmsd8XMPCWxLRpcUsqHf05lRzrX8YKwRDGqVAMMJU4_9rAxcl-" style="border: none; transform: rotate(0rad);" width="320" /></span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="font-family: &quot;open sans&quot;; font-size: 13.3333px; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"><img alt="WebGL_after.png" height="200" src="https://lh6.googleusercontent.com/Q2jMLejW_o0okCGKimK7qBYSEtP4huI5Fo8v8ZvcsizZADcF1YWZagcgaTw9oao3j33Y4vBpFhPGPlC2YSSmEGD9ZMEhJvI9aLAOoD234WER-Vpj_PdkDaC9WeZW8-CfdZQq10_h" style="border: none; transform: rotate(0rad);" width="320" /></span></div>
</td></tr>
</tbody></table>
</div>
</div>
<h4>
Touch support</h4>
As mobile web usage grows, users expect familiar touch-based interactions to work everywhere. The new renderer supports the same natural touch-based gestures on mobile which have been available in the Google Maps Android app: pinch-to-zoom and double-tap-to-go. In the old renderer, zooming was only available through the +/- buttons, and movement was only possible by clicking the arrows on the ground.<br />
<br />
<h4>
Motion tracking on mobile devices</h4>
Mobile devices give developers the opportunity to provide their users with more natural ways to explore and interact with their applications. We’ve enabled support for device orientation events on Street View so that users on mobile devices can look around in Street View by moving their phone. Developers have the option to turn this off if they prefer. Please see the <a href="https://developers.google.com/maps/documentation/javascript/streetview?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=#motion-tracking" >developer documentation</a><span id="goog_700245662"></span><span id="goog_700245663"></span><a href="https://www.blogger.com/"></a> for more details, or open the documentation link on a mobile device to see motion tracking in action. <br />
<br />
<h3>
Better controls</h3>
<h4>
X Forward</h4>
When using a desktop device with a mouse or trackpad, users will see a small "X" at the cursor location that indicates the next camera location if they choose to move forward. Arrows indicate the direction of movement. Wall rectangles identify the direction the camera will point towards.<br />
<br />
<div dir="ltr" style="margin-left: 0pt;">
<table style="border-collapse: collapse; border: none;"><colgroup><col width="360"></col><col width="359"></col></colgroup><tbody>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Next image targets</span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Next centered image target</span></div>
</td></tr>
<tr style="height: 235px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;">
<span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="200" src="https://lh4.googleusercontent.com/bSeHEipDYtEiFOBNMMeRQw-LGDNJ0aETTDUmG_7yYwVH4cQuNLBRzwcqfuYNkydy4kCqhb441Xt8V0zhIUObGlPGehfqCmLfaL9mpf07NAsc2t9dzHvoOf0kr9VtDenvGZ9_OYZa" style="border: none; transform: rotate(0rad);" width="320" /></span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;">
<span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="200" src="https://lh4.googleusercontent.com/dggZUDqruDnihSTkSwOwycRC6pEOoXErmZJvi7jtV0cFbu9PEVW-zYZs8NzbfVbpevoK5Jcave8gxBJEx71ZhYcLghIpCxZWDTx1KFWw-1iF0KJoHalFSGrnF5ynAlstweLaaADd" style="border: none; transform: rotate(0rad);" width="320" /></span></div>
</td></tr>
</tbody></table>
</div>
<h4>
Cleaner street names, labels and targets</h4>
Street names and labels are now separated from controls, removing overlap issues and allowing for clean display in right-to-left and left-to-right languages.<br />
<br />
<div dir="ltr" style="margin-left: 0pt;">
<table style="border-collapse: collapse; border: none;"><colgroup><col width="360"></col><col width="359"></col></colgroup><tbody>
<tr style="height: 0px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Old renderer</span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt; text-align: center;">
<span style="background-color: transparent; color: black; font-family: &quot;helvetica neue&quot; , &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">New renderer</span></div>
</td></tr>
<tr style="height: 233px;"><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;">
<span style="background-color: transparent; color: black; font-family: &quot;open sans&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="200" src="https://lh3.googleusercontent.com/9mBLz3mhqYvECS0HwRigC6OQsjDrnQTY7JeJvNr1-0ggpDIURhdb1v-vBy6bmdlFP1VceVQgbyj-WeOoefVPxOS_haXYHOYtHSNOP7PWfsbOyKY3mMoEl1uPG4urW8XMJQPCloAw" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="320" /></span></div>
</td><td style="border-bottom: solid #000000 0px; border-left: solid #000000 0px; border-right: solid #000000 0px; border-top: solid #000000 0px; padding: 0; vertical-align: top;"><div dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;">
<span style="background-color: transparent; color: black; font-family: &quot;open sans&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="200" src="https://lh6.googleusercontent.com/ML56mnoHEYZF0ruzUOiE3BC4VYjQsFblsEUVhNmowNzZEOwPhIec3FF0x2dGfVLDk2PW_UD6XALO_9YYtLo--I6XM-wcUMpc2HtrkOFGddgfEnylABR3AuZdHiGT3AE0asf31nSI" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="320" /></span></div>
</td></tr>
</tbody></table>
</div>
We hope you enjoy using the new and improved Street View renderer! Also a big thank you to all the developers who use the Google Maps JavaScript API and provide feedback via the <a href="https://code.google.com/p/gmaps-api-issues/?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">issue tracker</a>. Getting feedback from developers is vital for us to be able to keep improving our products, so if you have any bug reports or feature requests, please let us know!<br />
<br />
For more information on Street View in the Google Maps JavaScript API, please see the <a href="https://developers.google.com/maps/documentation/javascript/streetview?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=#motion-tracking" >developer documentation</a>.<br />
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;">
<img alt="author image" border="0" src="https://lh6.googleusercontent.com/mbzhN4UgcBZWGmNITagTVcFZZBsOqxRKXwzK6231tfvjiRMN0JwZYDL--z0X3qgQUmvW-e5c9qZwETINRrS4i1whh9LwqRcM27pTVPGhePv1WmWRxC3_twbglXD3wFXPshuSPnuT" style="border-radius: 50%; width: 80px;" /></div>
</td>  <td><i>Posted by Elena Kelareva, Product Manager, Google Maps APIs</i></td></tr>
</tbody></table>
<br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/new-javascript-street-view-renderer-brings-rendering-improvements-and-better-mobile-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Dragons and turtles, and fish, oh hi!</title>
		<link>https://googledata.org/google-earth/dragons-and-turtles-and-fish-oh-hi/</link>
		<comments>https://googledata.org/google-earth/dragons-and-turtles-and-fish-oh-hi/#comments</comments>
		<pubDate>Tue, 09 Aug 2016 06:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=c3a20bab8c5e01eb1424ce8ffbaa72e3</guid>
		<description><![CDATA[<div dir="ltr"><span>The </span><a href="https://www.google.com.au/maps/place/Komodo/@-8.5892072,119.332549,11z/data=!3m1!4b1!4m5!3m4!1s0x2db4545ba8b2bbbb:0x62b9b2c3feba412!8m2!3d-8.5850461!4d119.4411476"><span>Indonesian Island of Komodo </span></a><span>is home to the world's largest living lizard &#8212; the </span><a href="https://en.wikipedia.org/wiki/Komodo_dragon"><span>Komodo Dragon</span></a><span>. Now you can see these </span><a href="https://www.google.com/maps/@-8.5750784,119.4958943,3a,15y,313h,83.98t/data=!3m6!1e1!3m4!1swu0FEX4Lmy5TjOm9WkZIOw!2e0!7i13312!8i6656"><span>carnivorous reptiles</span></a><span> from the comfort (and safety!) of home with the launch of new </span><a href="https://www.google.com/streetview/#indonesia-highlights"><span>Street View imagery from the Komodo islands</span></a><span>. </span></div><span><br /></span> <br /><div dir="ltr"><span>Beyond taking a virtual walk with dragons, you can also explore the rich marine life surrounding Komodo Island, with the launch of </span><a href="https://www.google.com/streetview/#indonesia-highlights"><span>11 new underwater sites from Indonesia</span></a><span>, thanks to </span><a href="http://catlinseaviewsurvey.com/"><span>XL Catlin Seaview Survey</span></a><span> and </span><a href="http://www.theoceanagency.org/"><span>The Ocean Agency</span></a><span>.</span></div><div dir="ltr"><a href="http://batubolong.png/"><img alt="BatuBolong.png" height="344" src="https://lh6.googleusercontent.com/hq25xkvvL7pilXwBDn_NP_E1tPB1CxwJXzo7CLDZRtTX4H0MboCgEi6FDAlXhFfb-BYGHWxA0nWb0CROLYxfWMir0vWciAEUqoGVGDrvSXmzNNkdRZNgdS6QkI94FToQFaU8dGcR" width="640"></a></div><span><div dir="ltr"><span><a href="https://www.google.com/maps/@-8.5372291,119.6137381,3a,75y,119.44h,63.41t/data=!3m6!1e1!3m4!1s0Kw2Hl0EvkoAAAQ1mkCLsQ!2e0!7i9500!8i4750!6m1!1e1">Batu Bolong reef is covered with bright coral and marine life </a></span></div><div dir="ltr"><span>Image from XL Catlin Seaview Survey</span></div></span><span><span><br /></span></span><span><span>Home to a </span><a href="https://www.google.com/maps/@-8.5371323,119.6135986,3a,75y,112.95h,73.63t/data=!3m6!1e1!3m4!1sy9WBwGX94UMAAAQ1mkCLsw!2e0!7i9500!8i4750!6m1!1e1"><span>kaleidoscope of corals and fish</span></a><span>, sites like </span><a href="https://www.google.com/maps/@-8.5372291,119.6137381,3a,75y,119.44h,63.41t/data=!3m6!1e1!3m4!1s0Kw2Hl0EvkoAAAQ1mkCLsQ!2e0!7i9500!8i4750!6m1!1e1"><span>Batu Bolong</span></a><span> and </span><a href="https://www.google.com/maps/place/Keruo/@-0.5901211,130.2951012,17z/data=!3m1!4b1!4m5!3m4!1s0x0:0xe2c9dd929e31e20!8m2!3d-0.5901211!4d130.2972899"><span>Raja Ampat</span></a><span> attract </span><a href="https://www.google.com/maps/@-8.5372291,119.6137381,3a,75y,10.24h,100.96t/data=!3m6!1e1!3m4!1s0Kw2Hl0EvkoAAAQ1mkCLsQ!2e0!7i9500!8i4750!6m1!1e1"><span>scuba divers</span></a><span> from around the world. Now you can </span><a href="https://www.google.com/maps/place/Timor+II/@1.6180983,124.7819142,3a,90y,245.47h,92.9t/data=!3m8!1e1!3m6!1sEo_zoVu545QAAAQ1mbVqIA!2e0!3e2!6s%2F%2Fgeo1.ggpht.com%2Fcbk%3Fpanoid%3DEo_zoVu545QAAAQ1mbVqIA%26output%3Dthumbnail%26cb_client%3Dsearch.TACTILE.gps%26thumb%3D2%26w%3D86%26h%3D86%26yaw%3D245.18187%26pitch%3D0!7i9500!8i4750!4m5!3m4!1s0x0:0x5c2d2a5770aea348!8m2!3d1.6202262!4d124.7817605!6m1!1e1"><span>take a dip with turtles</span></a><span>, go swimming with </span><a href="https://www.google.com/maps/@-8.5366666,119.6144261,3a,61.2y,271.57h,83.95t/data=!3m7!1e1!3m5!1sE7cItX40ifwAAAQ1mkCLww!2e0!3e2!7i9500!8i4750"><span>sweetlips</span></a><span>, and inspect </span><a href="https://www.google.com/maps/@-8.5372291,119.6137381,3a,75y,119.44h,63.41t/data=!3m6!1e1!3m4!1s0Kw2Hl0EvkoAAAQ1mkCLsQ!2e0!7i9500!8i4750!6m1!1e1"><span>colorful corals </span></a><span>all without having to put on a wetsuit. All you need is Google Maps, to see and appreciate these unique and beautiful sites (available on </span><a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC"><span>iOS</span></a><span> or </span><a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&#38;hl=en&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC"><span>Android</span></a><span>). </span> </span> <br /><div dir="ltr"><span><img alt="Keruo.png" height="349" src="https://lh4.googleusercontent.com/OooC6lBTL7pugYXNJv-i7fP5UEXGL7uBa85tBaFP5DoYAwcj2WzYkR3RkXkXJYAFUU8aLVA2E8zuKRZE-hd9Vdkz_YqYxtFNGlAsLdj6ym4tVzBvv07qA0taabLGLoy-GTrhoMar" width="640"></span></div><div dir="ltr"><span><a href="https://www.google.com/maps/@-0.5906152,130.2971043,3a,75y,308h,90t/data=!3m8!1e1!3m6!1s65J_H91M2GQAAAQ1mbXUHA!2e0!3e13!6s%2F%2Fgeo0.ggpht.com%2Fcbk%3Fpanoid%3D65J_H91M2GQAAAQ1mbXUHA%26output%3Dthumbnail%26cb_client%3Dmaps_sv.tactile.gps%26thumb%3D2%26w%3D203%26h%3D100%26yaw%3D308.98581%26pitch%3D0!7i9500!8i4750">The shallow coral reefs of Raja Ampat are bustling with fish </a></span></div><div><span><span>Image from XL Catlin Seaview Survey</span></span></div><br /><span></span><br /><div dir="ltr"><a href="https://www.google.com/maps/place/Timor+II/@1.620224,124.7786741,16z/data=!4m5!3m4!1s0x0:0x5c2d2a5770aea348!8m2!3d1.6202262!4d124.7817605"><span>Bunaken National Park</span></a><span> in the Coral Triangle is another top destination for aquanauts, as it has some of the </span><a href="https://en.wikipedia.org/wiki/Coral_Triangle"><span>highest levels of biodiversity in the world</span></a><span> and is home to many </span><a href="https://www.google.com/maps/place/Leukan+III+A/@1.6013369,124.7662691,3a,75y,175h,90t/data=!3m8!1e1!3m6!1ssx20-3N2yjAAAAQ1mbUW5Q!2e0!3e2!6s%2F%2Fgeo3.ggpht.com%2Fcbk%3Fpanoid%3Dsx20-3N2yjAAAAQ1mbUW5Q%26output%3Dthumbnail%26cb_client%3Dsearch.TACTILE.gps%26thumb%3D2%26w%3D195%26h%3D106%26yaw%3D175.74338%26pitch%3D0!7i9500!8i4750!4m5!3m4!1s0x0:0xff2f05eb3b1c3bce!8m2!3d1.5999193!4d124.7665661!6m1!1e1"><span>reef fish</span></a><span> and </span><a href="https://www.google.com/maps/@1.6179609,124.7631845,3a,75y,176.12h,65.44t/data=!3m6!1e1!3m4!1sQAtnj9cBZMIAAAQ1mbUY6A!2e0!7i9500!8i4750!6m1!1e1"><span>turtles</span></a><span>. </span></div><div dir="ltr"><span><br /></span></div><div dir="ltr"><span><img alt="TimorII.png" height="352" src="https://lh6.googleusercontent.com/ffIEb7Lqu7IIaO6BGCSHAf8M30IYHxy6fYcLaPOHu_1NTx4ZP_R59PEceYZnbFcgbK-FeAmYQ-jfoU5zZFFTivDaXSWwL_-nEwPq9WIvRn031rKVUw4-5NToPDiTitOCVmn0gYQt" width="640"></span></div><div dir="ltr"><span><a href="https://www.google.com/maps/place/Timor+II/@1.620224,124.7786741,16.5z/data=!4m5!3m4!1s0x0:0x5c2d2a5770aea348!8m2!3d1.6202262!4d124.7817605">A turtle rests under the coral at Timor II in Bunaken National Park</a></span></div><div dir="ltr"><span>Image from XL Catlin Seaview Survey</span></div><div dir="ltr"><span><b><br /></b></span></div><div dir="ltr"><span><a href="http://alungbanua.png/"><img alt="AlungBanua.png" height="349" src="https://lh5.googleusercontent.com/E47sbuXCBKSd-C25R_1VNb7TBeRhk-7qUc9Dby0PGRVYrf3WfWNxswIt0bsvfCtaIhZc9f26Bvdwk93hJ6jS-V8ZT4Uck8UFIGi7zn7yHkOossJ90NapumZQIEArkjz_DdYNSpm2" width="640"></a></span></div><div dir="ltr"><div dir="ltr"><a href="https://www.google.com/maps/@1.6179609,124.7631845,3a,75y,163.7h,67.53t/data=!3m6!1e1!3m4!1sQAtnj9cBZMIAAAQ1mbUY6A!2e0!7i9500!8i4750"><span>A turtle </span><span>t&#234;te-&#224;-t&#234;te at </span><span>Alung Banu</span></a></div><span><span>Image from XL Catlin Seaview Survey</span></span><br /><span><span><br /></span></span></div><div dir="ltr"><span><span><span><span>To really get schooled in the marine diversity of Indonesia, head over to the </span><a href="https://www.google.com/maps/place/Drop-off/@-8.2786323,115.5932895,17z/data=!3m1!4b1!4m5!3m4!1s0x0:0x6885b260c81317ce!8m2!3d-8.2786323!4d115.5954782"><span>Drop-off</span></a><span> in Bali where you&#8217;ll encounter</span><a href="https://www.google.com/maps/@-8.2784171,115.5957583,3a,66.5y,70.65h,72.08t/data=!3m7!1e1!3m5!1se9gEyANuL_MAAAQ1mkCNOg!2e0!3e2!7i9500!8i4750!6m1!1e1"><span> Giant Trevally</span></a><span>,</span><a href="https://www.google.com/maps/@-8.278411,115.5956737,3a,75y,22.65h,86.22t/data=!3m7!1e1!3m5!1skBHLPmnc1hYAAAQ1mkCNOQ!2e0!3e2!7i9500!8i4750!6m1!1e1"><span> Big Eye Trevally</span></a><span> and </span><a href="https://www.google.com/maps/place/Drop-off/@-8.2786169,115.5958406,3a,75y,331.81h,97.01t/data=!3m8!1e1!3m6!1sUEwMSd1PmJEAAAQ1mkCNPQ!2e0!3e2!6s%2F%2Fgeo1.ggpht.com%2Fcbk%3Fpanoid%3DUEwMSd1PmJEAAAQ1mkCNPQ%26output%3Dthumbnail%26cb_client%3Dsearch.TACTILE.gps%26thumb%3D2%26w%3D86%26h%3D86%26yaw%3D335.83987%26pitch%3D0!7i9500!8i4750!4m5!3m4!1s0x0:0x6885b260c81317ce!8m2!3d-8.2786323!4d115.5954782!6m1!1e1"><span>Yellowstripe Scad</span></a><span> aplenty. </span></span></span></span></div><div dir="ltr"><span><span><span><br /></span></span></span></div><div dir="ltr"><span><img alt="DropOff.png" height="352" src="https://lh5.googleusercontent.com/B_X9NR90Edh2jm1drXO4zuO3nfyOMkNuXyWWf2_-u82PkckfZst2Qy8wlPV9yBLQmQ-lhSe98KlYNBgNx1YOF5DfRyp95Mqx9c-bGR9a1oc1hPtwmaHEWGTnRcBGTMC14-zXG9M3" width="640"></span></div><div dir="ltr"><br /></div><div dir="ltr"><span><a href="https://www.google.com/maps/place/Drop-off/@-8.2786169,115.5958406,3a,75y,335h,90t/data=!3m8!1e1!3m6!1sUEwMSd1PmJEAAAQ1mkCNPQ!2e0!3e2!6s%2F%2Fgeo1.ggpht.com%2Fcbk%3Fpanoid%3DUEwMSd1PmJEAAAQ1mkCNPQ%26output%3Dthumbnail%26cb_client%3Dsearch.TACTILE.gps%26thumb%3D2%26w%3D86%26h%3D86%26yaw%3D335.83987%26pitch%3D0!7i9500!8i4750!4m5!3m4!1s0x0:0x6885b260c81317ce!8m2!3d-8.2786323!4d115.5954782!6m1!1e1">A school of Big Eye Trevally swim in the shallows at the Drop-Off in Tulamben, Bali</a></span></div><div dir="ltr"><span><span><span><span>Image from XL Catlin Seaview Survey</span></span></span></span></div><div dir="ltr"><span><span><span><br /></span></span></span></div><div dir="ltr"><span><span><span><span>To capture all this stunning underwater imagery, the XL Catlin Seaview Survey team use a </span><a href="http://catlinseaviewsurvey.com/science/technology"><span>panoramic camera system</span></a><span>, mounted on an underwater scooter piloted by a diver. The crystal clear images are produced by the camera cruising along at around 4kms per hour taking rapid-fire 360 degree pictures every 3 seconds. This imagery is part of a </span><a href="http://xlcatlinseaviewsurvey.com/"><span>unique global study </span></a><span>dedicated to monitoring the change of the ocean&#8217;s corals and revealing that change to the world. </span></span></span></span></div><div dir="ltr"><span><span><span><br /></span></span></span></div><div dir="ltr"><span><img alt="Screenshot 2016-08-06 10.54.46.png" height="276" src="https://lh5.googleusercontent.com/IqhO1iauBg5ZfiegvFPBqmeb6JPExMB0ISfJwiF8r-BYN-0XRuTaxcty0n3i7_Wztkx8G772Q5fJw3Qmoh2wdWUPZc5MifBgzt62yeuQcnNF5Fj9-8pGiS7Cpnoq0Xcz_uXW6brB" width="640"></span></div><div dir="ltr"><span><a href="https://drive.google.com/a/theoceanagency.org/folderview?id=0ByZUtG_ny-fdV1g2MFpLdWVqVU0&#38;usp=sharing_eid&#38;ts=57a44751">The XL Catlin Seaview Survey SVII camera surveys the picturesque coral garden at Keruo, Raja Ampat</a></span></div><div dir="ltr"><span><span><span><span>Image from XL Catlin Seaview Survey</span></span></span></span></div><div dir="ltr"><span><span><span><br /></span></span></span></div><div dir="ltr"><span><span><span><span>Once you&#8217;re finished exploring the sea, come up for some air and take in the sights on land at </span><a href="https://www.google.com/maps/@-8.5930552,119.4891159,3a,75y,322.84h,86.37t/data=!3m6!1e1!3m4!1sMHCJ4TBhJYs_Fc_KYH7-2Q!2e0!7i13312!8i6656"><span>Komodo village</span></a><span>. &#160;</span></span></span></span></div><div dir="ltr"><span><span><span><br /></span></span></span></div><div dir="ltr"><span><a href="https://www.blogger.com/%3Ciframe%20src=%22https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1470482308576!6m8!1m7!1sgb_sGewDBiUXrn0C7N7miw!2m2!1d-8.572632370863074!2d119.5020384692374!3f174.05!4f0.0799999999999983!5f0.7820865974627469%22%20width=%22600%22%20height=%22450%22%20frameborder=%220%22%20style=%22border:0%22%20allowfullscreen%3E%3C/iframe%3E"><img alt="Screen Shot 2016-08-06 at 9.18.39 PM.png" height="478" src="https://lh5.googleusercontent.com/H73hQ3kq8MDqYLRhXZDfLhUwZHddEbq6Rl-8Myy8ETc9Mr_HLTMXCgZ1HphKunwp5_m2JTxYFufZwgE-iF2WJv8FFFucTAFGmvWuJzezDamKEkwQkPNa_38hPp3OLHUhqJ_7h-lt" width="640"></a></span></div><div dir="ltr"><span><span><span><span><a href="https://www.blogger.com/%3Ciframe%20src=%22https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1470482308576!6m8!1m7!1sgb_sGewDBiUXrn0C7N7miw!2m2!1d-8.572632370863074!2d119.5020384692374!3f174.05!4f0.0799999999999983!5f0.7820865974627469%22%20width=%22600%22%20height=%22450%22%20frameborder=%220%22%20style=%22border:0%22%20allowfullscreen%3E%3C/iframe%3E">Enjoy the views above water too from Komodo village</a></span></span></span></span></div><div dir="ltr"><span><span><span><br /></span></span></span></div><div dir="ltr"><span>We hope you enjoy exploring Indonesia&#8217;s stunning natural beauty, above and below the water with Google Street View.</span></div><div dir="ltr"><span><span><br /></span></span></div><div><span><i>Posted by Cynthia Wei, Google Street View Program Manager, South East Asia.</i></span></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">The </span><a href="https://www.google.com.au/maps/place/Komodo/@-8.5892072,119.332549,11z/data=!3m1!4b1!4m5!3m4!1s0x2db4545ba8b2bbbb:0x62b9b2c3feba412!8m2!3d-8.5850461!4d119.4411476" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">Indonesian Island of Komodo </span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">is home to the world's largest living lizard — the </span><a href="https://en.wikipedia.org/wiki/Komodo_dragon" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">Komodo Dragon</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">. Now you can see these </span><a href="https://www.google.com/maps/@-8.5750784,119.4958943,3a,15y,313h,83.98t/data=!3m6!1e1!3m4!1swu0FEX4Lmy5TjOm9WkZIOw!2e0!7i13312!8i6656" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">carnivorous reptiles</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> from the comfort (and safety!) of home with the launch of new </span><a href="https://www.google.com/streetview/#indonesia-highlights" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">Street View imagery from the Komodo islands</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">. </span></div><span id="docs-internal-guid-5d4db0ec-6d6b-6d81-f2da-4d1ba30b6fd0"><br /></span> <br /><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Beyond taking a virtual walk with dragons, you can also explore the rich marine life surrounding Komodo Island, with the launch of </span><a href="https://www.google.com/streetview/#indonesia-highlights" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">11 new underwater sites from Indonesia</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">, thanks to </span><a href="http://catlinseaviewsurvey.com/" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">XL Catlin Seaview Survey</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> and </span><a href="http://www.theoceanagency.org/" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">The Ocean Agency</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">.</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><a href="http://batubolong.png/" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em; text-align: center;"><img alt="BatuBolong.png" height="344" src="https://lh6.googleusercontent.com/hq25xkvvL7pilXwBDn_NP_E1tPB1CxwJXzo7CLDZRtTX4H0MboCgEi6FDAlXhFfb-BYGHWxA0nWb0CROLYxfWMir0vWciAEUqoGVGDrvSXmzNNkdRZNgdS6QkI94FToQFaU8dGcR" style="border: none; transform: rotate(0rad);" width="640" /></a></div><span id="docs-internal-guid-5d4db0ec-6d77-313f-8a09-54b89a1a40ed"><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="font-family: Arial; font-size: 14.6667px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;"><a href="https://www.google.com/maps/@-8.5372291,119.6137381,3a,75y,119.44h,63.41t/data=!3m6!1e1!3m4!1s0Kw2Hl0EvkoAAAQ1mkCLsQ!2e0!7i9500!8i4750!6m1!1e1">Batu Bolong reef is covered with bright coral and marine life </a></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="font-family: Arial; font-size: 10.6667px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;">Image from XL Catlin Seaview Survey</span></div></span><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;"><br /></span></span><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;">Home to a </span><a href="https://www.google.com/maps/@-8.5371323,119.6135986,3a,75y,112.95h,73.63t/data=!3m6!1e1!3m4!1sy9WBwGX94UMAAAQ1mkCLsw!2e0!7i9500!8i4750!6m1!1e1" style="text-decoration: none;"><span style="color: #1155cc; font-family: Arial; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline;">kaleidoscope of corals and fish</span></a><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;">, sites like </span><a href="https://www.google.com/maps/@-8.5372291,119.6137381,3a,75y,119.44h,63.41t/data=!3m6!1e1!3m4!1s0Kw2Hl0EvkoAAAQ1mkCLsQ!2e0!7i9500!8i4750!6m1!1e1" style="text-decoration: none;"><span style="color: #1155cc; font-family: Arial; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline;">Batu Bolong</span></a><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;"> and </span><a href="https://www.google.com/maps/place/Keruo/@-0.5901211,130.2951012,17z/data=!3m1!4b1!4m5!3m4!1s0x0:0xe2c9dd929e31e20!8m2!3d-0.5901211!4d130.2972899" style="text-decoration: none;"><span style="color: #1155cc; font-family: Arial; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline;">Raja Ampat</span></a><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;"> attract </span><a href="https://www.google.com/maps/@-8.5372291,119.6137381,3a,75y,10.24h,100.96t/data=!3m6!1e1!3m4!1s0Kw2Hl0EvkoAAAQ1mkCLsQ!2e0!7i9500!8i4750!6m1!1e1" style="text-decoration: none;"><span style="color: #1155cc; font-family: Arial; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline;">scuba divers</span></a><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;"> from around the world. Now you can </span><a href="https://www.google.com/maps/place/Timor+II/@1.6180983,124.7819142,3a,90y,245.47h,92.9t/data=!3m8!1e1!3m6!1sEo_zoVu545QAAAQ1mbVqIA!2e0!3e2!6s%2F%2Fgeo1.ggpht.com%2Fcbk%3Fpanoid%3DEo_zoVu545QAAAQ1mbVqIA%26output%3Dthumbnail%26cb_client%3Dsearch.TACTILE.gps%26thumb%3D2%26w%3D86%26h%3D86%26yaw%3D245.18187%26pitch%3D0!7i9500!8i4750!4m5!3m4!1s0x0:0x5c2d2a5770aea348!8m2!3d1.6202262!4d124.7817605!6m1!1e1" style="text-decoration: none;"><span style="color: #1155cc; font-family: Arial; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline;">take a dip with turtles</span></a><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;">, go swimming with </span><a href="https://www.google.com/maps/@-8.5366666,119.6144261,3a,61.2y,271.57h,83.95t/data=!3m7!1e1!3m5!1sE7cItX40ifwAAAQ1mkCLww!2e0!3e2!7i9500!8i4750" style="text-decoration: none;"><span style="color: #1155cc; font-family: Arial; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline;">sweetlips</span></a><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;">, and inspect </span><a href="https://www.google.com/maps/@-8.5372291,119.6137381,3a,75y,119.44h,63.41t/data=!3m6!1e1!3m4!1s0Kw2Hl0EvkoAAAQ1mkCLsQ!2e0!7i9500!8i4750!6m1!1e1" style="text-decoration: none;"><span style="color: #1155cc; font-family: Arial; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline;">colorful corals </span></a><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;">all without having to put on a wetsuit. All you need is Google Maps, to see and appreciate these unique and beautiful sites (available on </span><a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC" style="text-decoration: none;"><span style="color: #1155cc; font-family: Arial; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline;">iOS</span></a><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;"> or </span><a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&amp;hl=en&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC" style="text-decoration: none;"><span style="color: #1155cc; font-family: Arial; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline;">Android</span></a><span style="font-family: Arial; font-size: 14.6667px; vertical-align: baseline;">). </span> </span> <br /><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img alt="Keruo.png" height="349" src="https://lh4.googleusercontent.com/OooC6lBTL7pugYXNJv-i7fP5UEXGL7uBa85tBaFP5DoYAwcj2WzYkR3RkXkXJYAFUU8aLVA2E8zuKRZE-hd9Vdkz_YqYxtFNGlAsLdj6ym4tVzBvv07qA0taabLGLoy-GTrhoMar" style="border: none; transform: rotate(0rad);" width="640" /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: italic; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><a href="https://www.google.com/maps/@-0.5906152,130.2971043,3a,75y,308h,90t/data=!3m8!1e1!3m6!1s65J_H91M2GQAAAQ1mbXUHA!2e0!3e13!6s%2F%2Fgeo0.ggpht.com%2Fcbk%3Fpanoid%3D65J_H91M2GQAAAQ1mbXUHA%26output%3Dthumbnail%26cb_client%3Dmaps_sv.tactile.gps%26thumb%3D2%26w%3D203%26h%3D100%26yaw%3D308.98581%26pitch%3D0!7i9500!8i4750">The shallow coral reefs of Raja Ampat are bustling with fish </a></span></div><div style="text-align: center;"><span id="docs-internal-guid-5d4db0ec-6d6d-adf5-bbdc-0897f4d470bb"><span style="font-family: &quot;arial&quot;; font-size: 10.6667px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;">Image from XL Catlin Seaview Survey</span></span></div><br /><span id="docs-internal-guid-5d4db0ec-6d6e-a6b8-77a8-f5fe382f506a"></span><br /><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><a href="https://www.google.com/maps/place/Timor+II/@1.620224,124.7786741,16z/data=!4m5!3m4!1s0x0:0x5c2d2a5770aea348!8m2!3d1.6202262!4d124.7817605" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">Bunaken National Park</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> in the Coral Triangle is another top destination for aquanauts, as it has some of the </span><a href="https://en.wikipedia.org/wiki/Coral_Triangle" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">highest levels of biodiversity in the world</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> and is home to many </span><a href="https://www.google.com/maps/place/Leukan+III+A/@1.6013369,124.7662691,3a,75y,175h,90t/data=!3m8!1e1!3m6!1ssx20-3N2yjAAAAQ1mbUW5Q!2e0!3e2!6s%2F%2Fgeo3.ggpht.com%2Fcbk%3Fpanoid%3Dsx20-3N2yjAAAAQ1mbUW5Q%26output%3Dthumbnail%26cb_client%3Dsearch.TACTILE.gps%26thumb%3D2%26w%3D195%26h%3D106%26yaw%3D175.74338%26pitch%3D0!7i9500!8i4750!4m5!3m4!1s0x0:0xff2f05eb3b1c3bce!8m2!3d1.5999193!4d124.7665661!6m1!1e1" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">reef fish</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> and </span><a href="https://www.google.com/maps/@1.6179609,124.7631845,3a,75y,176.12h,65.44t/data=!3m6!1e1!3m4!1sQAtnj9cBZMIAAAQ1mbUY6A!2e0!7i9500!8i4750!6m1!1e1" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">turtles</span></a><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">. </span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><br /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img alt="TimorII.png" height="352" src="https://lh6.googleusercontent.com/ffIEb7Lqu7IIaO6BGCSHAf8M30IYHxy6fYcLaPOHu_1NTx4ZP_R59PEceYZnbFcgbK-FeAmYQ-jfoU5zZFFTivDaXSWwL_-nEwPq9WIvRn031rKVUw4-5NToPDiTitOCVmn0gYQt" style="border: none; transform: rotate(0rad);" width="640" /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 13.333333333333332px; font-style: italic; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><a href="https://www.google.com/maps/place/Timor+II/@1.620224,124.7786741,16.5z/data=!4m5!3m4!1s0x0:0x5c2d2a5770aea348!8m2!3d1.6202262!4d124.7817605">A turtle rests under the coral at Timor II in Bunaken National Park</a></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 10.666666666666666px; font-style: italic; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Image from XL Catlin Seaview Survey</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><b id="docs-internal-guid-5d4db0ec-6d6e-d442-da2c-58183448b186" style="font-weight: normal;"><br /></b></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><a href="http://alungbanua.png/"><img alt="AlungBanua.png" height="349" src="https://lh5.googleusercontent.com/E47sbuXCBKSd-C25R_1VNb7TBeRhk-7qUc9Dby0PGRVYrf3WfWNxswIt0bsvfCtaIhZc9f26Bvdwk93hJ6jS-V8ZT4Uck8UFIGi7zn7yHkOossJ90NapumZQIEArkjz_DdYNSpm2" style="border: none; transform: rotate(0rad);" width="640" /></a></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><a href="https://www.google.com/maps/@1.6179609,124.7631845,3a,75y,163.7h,67.53t/data=!3m6!1e1!3m4!1sQAtnj9cBZMIAAAQ1mbUY6A!2e0!7i9500!8i4750"><span style="background-color: transparent; color: black; font-family: Arial; font-size: 14.6667px; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: 400; vertical-align: baseline; white-space: pre-wrap;">A turtle </span><span style="background-color: white; color: #222222; font-family: Arial; font-size: 14.6667px; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: 400; vertical-align: baseline; white-space: pre-wrap;">tête-à-tête at </span><span style="background-color: transparent; color: #222222; font-family: Arial; font-size: 14.6667px; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: 400; vertical-align: baseline; white-space: pre-wrap;">Alung Banu</span></a></div><span id="docs-internal-guid-5d4db0ec-6d78-6f78-5cb6-c45e6a13a076"><span style="font-family: Arial; font-size: 10.6667px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;">Image from XL Catlin Seaview Survey</span></span><br /><span><span style="font-family: Arial; font-size: 10.6667px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;"><br /></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: left;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span id="docs-internal-guid-5d4db0ec-6d70-25df-0be1-986315f5ae4b"><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;">To really get schooled in the marine diversity of Indonesia, head over to the </span><a href="https://www.google.com/maps/place/Drop-off/@-8.2786323,115.5932895,17z/data=!3m1!4b1!4m5!3m4!1s0x0:0x6885b260c81317ce!8m2!3d-8.2786323!4d115.5954782" style="text-decoration: none;"><span style="color: #1155cc; font-size: 14.6667px; font-style: normal; text-decoration: underline; vertical-align: baseline;">Drop-off</span></a><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;"> in Bali where you’ll encounter</span><a href="https://www.google.com/maps/@-8.2784171,115.5957583,3a,66.5y,70.65h,72.08t/data=!3m7!1e1!3m5!1se9gEyANuL_MAAAQ1mkCNOg!2e0!3e2!7i9500!8i4750!6m1!1e1" style="text-decoration: none;"><span style="color: #1155cc; font-size: 14.6667px; font-style: normal; text-decoration: underline; vertical-align: baseline;"> Giant Trevally</span></a><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;">,</span><a href="https://www.google.com/maps/@-8.278411,115.5956737,3a,75y,22.65h,86.22t/data=!3m7!1e1!3m5!1skBHLPmnc1hYAAAQ1mkCNOQ!2e0!3e2!7i9500!8i4750!6m1!1e1" style="text-decoration: none;"><span style="color: #1155cc; font-size: 14.6667px; font-style: normal; text-decoration: underline; vertical-align: baseline;"> Big Eye Trevally</span></a><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;"> and </span><a href="https://www.google.com/maps/place/Drop-off/@-8.2786169,115.5958406,3a,75y,331.81h,97.01t/data=!3m8!1e1!3m6!1sUEwMSd1PmJEAAAQ1mkCNPQ!2e0!3e2!6s%2F%2Fgeo1.ggpht.com%2Fcbk%3Fpanoid%3DUEwMSd1PmJEAAAQ1mkCNPQ%26output%3Dthumbnail%26cb_client%3Dsearch.TACTILE.gps%26thumb%3D2%26w%3D86%26h%3D86%26yaw%3D335.83987%26pitch%3D0!7i9500!8i4750!4m5!3m4!1s0x0:0x6885b260c81317ce!8m2!3d-8.2786323!4d115.5954782!6m1!1e1" style="text-decoration: none;"><span style="color: #1155cc; font-size: 14.6667px; font-style: normal; text-decoration: underline; vertical-align: baseline;">Yellowstripe Scad</span></a><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;"> aplenty. </span></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: left;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;"><br /></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img alt="DropOff.png" height="352" src="https://lh5.googleusercontent.com/B_X9NR90Edh2jm1drXO4zuO3nfyOMkNuXyWWf2_-u82PkckfZst2Qy8wlPV9yBLQmQ-lhSe98KlYNBgNx1YOF5DfRyp95Mqx9c-bGR9a1oc1hPtwmaHEWGTnRcBGTMC14-zXG9M3" style="border: none; transform: rotate(0rad);" width="640" /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><br /></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 13.333333333333332px; font-style: italic; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><a href="https://www.google.com/maps/place/Drop-off/@-8.2786169,115.5958406,3a,75y,335h,90t/data=!3m8!1e1!3m6!1sUEwMSd1PmJEAAAQ1mkCNPQ!2e0!3e2!6s%2F%2Fgeo1.ggpht.com%2Fcbk%3Fpanoid%3DUEwMSd1PmJEAAAQ1mkCNPQ%26output%3Dthumbnail%26cb_client%3Dsearch.TACTILE.gps%26thumb%3D2%26w%3D86%26h%3D86%26yaw%3D335.83987%26pitch%3D0!7i9500!8i4750!4m5!3m4!1s0x0:0x6885b260c81317ce!8m2!3d-8.2786323!4d115.5954782!6m1!1e1">A school of Big Eye Trevally swim in the shallows at the Drop-Off in Tulamben, Bali</a></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span id="docs-internal-guid-5d4db0ec-6d70-71c4-62f1-eb536312479b"><span style="font-size: 10.6667px; vertical-align: baseline;">Image from XL Catlin Seaview Survey</span></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: left;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;"><br /></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: left;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span id="docs-internal-guid-5d4db0ec-6d71-950a-aab5-79506abeb39e"><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;">To capture all this stunning underwater imagery, the XL Catlin Seaview Survey team use a </span><a href="http://catlinseaviewsurvey.com/science/technology" style="text-decoration: none;"><span style="color: #1155cc; font-size: 14.6667px; font-style: normal; text-decoration: underline; vertical-align: baseline;">panoramic camera system</span></a><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;">, mounted on an underwater scooter piloted by a diver. The crystal clear images are produced by the camera cruising along at around 4kms per hour taking rapid-fire 360 degree pictures every 3 seconds. This imagery is part of a </span><a href="http://xlcatlinseaviewsurvey.com/" style="text-decoration: none;"><span style="color: #1155cc; font-size: 14.6667px; font-style: normal; text-decoration: underline; vertical-align: baseline;">unique global study </span></a><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;">dedicated to monitoring the change of the ocean’s corals and revealing that change to the world. </span></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: left;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;"><br /></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img alt="Screenshot 2016-08-06 10.54.46.png" height="276" src="https://lh5.googleusercontent.com/IqhO1iauBg5ZfiegvFPBqmeb6JPExMB0ISfJwiF8r-BYN-0XRuTaxcty0n3i7_Wztkx8G772Q5fJw3Qmoh2wdWUPZc5MifBgzt62yeuQcnNF5Fj9-8pGiS7Cpnoq0Xcz_uXW6brB" style="border: none; transform: rotate(0rad);" width="640" /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 13.333333333333332px; font-style: italic; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><a href="https://drive.google.com/a/theoceanagency.org/folderview?id=0ByZUtG_ny-fdV1g2MFpLdWVqVU0&amp;usp=sharing_eid&amp;ts=57a44751">The XL Catlin Seaview Survey SVII camera surveys the picturesque coral garden at Keruo, Raja Ampat</a></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span id="docs-internal-guid-5d4db0ec-6d71-ce03-9ece-41a1299e3b5c"><span style="font-size: 10.6667px; vertical-align: baseline;">Image from XL Catlin Seaview Survey</span></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: left;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;"><br /></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: left;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span id="docs-internal-guid-5d4db0ec-6d72-8290-fef6-1b18de613c9d"><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;">Once you’re finished exploring the sea, come up for some air and take in the sights on land at </span><a href="https://www.google.com/maps/@-8.5930552,119.4891159,3a,75y,322.84h,86.37t/data=!3m6!1e1!3m4!1sMHCJ4TBhJYs_Fc_KYH7-2Q!2e0!7i13312!8i6656" style="text-decoration: none;"><span style="color: #1155cc; font-size: 14.6667px; font-style: normal; text-decoration: underline; vertical-align: baseline;">Komodo village</span></a><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;">. &nbsp;</span></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: left;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span style="font-size: 14.6667px; font-style: normal; vertical-align: baseline;"><br /></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: italic; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><a href="https://www.blogger.com/%3Ciframe%20src=%22https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1470482308576!6m8!1m7!1sgb_sGewDBiUXrn0C7N7miw!2m2!1d-8.572632370863074!2d119.5020384692374!3f174.05!4f0.0799999999999983!5f0.7820865974627469%22%20width=%22600%22%20height=%22450%22%20frameborder=%220%22%20style=%22border:0%22%20allowfullscreen%3E%3C/iframe%3E"><img alt="Screen Shot 2016-08-06 at 9.18.39 PM.png" height="478" src="https://lh5.googleusercontent.com/H73hQ3kq8MDqYLRhXZDfLhUwZHddEbq6Rl-8Myy8ETc9Mr_HLTMXCgZ1HphKunwp5_m2JTxYFufZwgE-iF2WJv8FFFucTAFGmvWuJzezDamKEkwQkPNa_38hPp3OLHUhqJ_7h-lt" style="border: none; transform: rotate(0rad);" width="640" /></a></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span id="docs-internal-guid-5d4db0ec-6d72-a9fa-cf32-51a114cfa98f"><span style="font-size: 13.3333px; vertical-align: baseline;"><a href="https://www.blogger.com/%3Ciframe%20src=%22https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1470482308576!6m8!1m7!1sgb_sGewDBiUXrn0C7N7miw!2m2!1d-8.572632370863074!2d119.5020384692374!3f174.05!4f0.0799999999999983!5f0.7820865974627469%22%20width=%22600%22%20height=%22450%22%20frameborder=%220%22%20style=%22border:0%22%20allowfullscreen%3E%3C/iframe%3E">Enjoy the views above water too from Komodo village</a></span></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><span style="font-size: 13.3333px; vertical-align: baseline;"><br /></span></span></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">We hope you enjoy exploring Indonesia’s stunning natural beauty, above and below the water with Google Street View.</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 14.666666666666666px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 10.6667px; font-style: italic; vertical-align: baseline;"><br /></span></span></div><div style="text-align: left;"><span style="font-size: 14.6667px; line-height: 1.38;"><i>Posted by Cynthia Wei, Google Street View Program Manager, South East Asia.</i></span></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/dragons-and-turtles-and-fish-oh-hi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Get around town a little easier with new offline features and ride service options</title>
		<link>https://googledata.org/google-earth/get-around-town-a-little-easier-with-new-offline-features-and-ride-service-options/</link>
		<comments>https://googledata.org/google-earth/get-around-town-a-little-easier-with-new-offline-features-and-ride-service-options/#comments</comments>
		<pubDate>Tue, 09 Aug 2016 05:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=abd3afa129afd6cb5da4458df5b926f4</guid>
		<description><![CDATA[Starting today it just got a little easier to get around town with Google Maps &#8211; even when you run into some of the most frustrating travel scenarios around.<br /><br /><b>Scenario 1: You live or are traveling around a place with expensive data or spotty service </b><br />We&#8217;ve all been through this -- whether in our own backyard or a different country. You need to get directions, but you don&#8217;t have service. Or you do have service &#8211; but it&#8217;s spotty &#8211; so you find yourself staring at the map in a perpetual state of loading while you sit in your car waiting to find out which way to go. Now, when you know you&#8217;ll have spotty service or just want to save on data, you can toggle to &#8220;Wi-fi only&#8221; to use Google Maps entirely offline on Android. And the best part is that you can still use other apps and the rest of your phone as you normally would. You might even save on battery life too. <br /><br /><div><span><span><img alt="81M6LszJB4Z.png" height="491" src="https://lh3.googleusercontent.com/NR-NfvfWSZ3SHzI7khuQ3a4D9AJWT2IHSz-5tKC7e8ALnuqfyOowIp-EsdOltyklBzo-ggXQl6AFDHnACBLMAa5B0dHFqpkYU24oDSQr__tRZXtS-BpPig9N6-xVVcJv9o1AWrbJ" width="277"></span></span></div><br /><b>Scenario 2: You&#8217;re running out of storage</b><br />Entry-level smartphones come with internal storage capacities as low as 4GB, while higher-end models range between 8GB and 32GB. For many of us, that&#8217;s not enough for all the videos, music, apps, and photos we cram onto our beloved smartphones. To ensure that Google Maps users with any storage capacity can download and use offline areas when they need them most, we&#8217;ve added the ability to download your offline areas to an external SD card (if your device supports them) on Google Maps for Android. Now you&#8217;ll never have to choose between snapping more food photos or the ability to navigate offline. <br /><br /><div><span><span><img height="500" src="https://lh5.googleusercontent.com/kLrNotzYbFv0MZgf7BLUY6xpDRFYtnl3ZfQCmggE4S6UcO2GkQEr2Jhu107YazI_QaZVIgu0jivh_o-AaLChx4udo3_2I_apV-7-JkNRnixFsnCDevIOivi5lDniqWUAycaZEH2y" width="284"></span></span></div><div><span><br /></span></div><b>Scenario 3: You just want someone else to do the driving </b><br />Sometimes you just need to get somewhere fast and don't want to drive, walk, or take public transportation. In March, we introduced a dedicated mode where users can easily compare ride service options without having to open multiple apps. In addition to showing options from Uber, we're now showing <a href="https://www.go-jek.com/">GO-JEK</a> rides in three cities in Indonesia with ten more cities coming soon (Android, rolling out on iOS) and <a href="http://www.grab.com/sg/">Grab</a> rides in 24 cities throughout Indonesia, Malaysia, Philippines, Singapore, and Thailand (Android, rolling out on iOS). We've also expanded the availability of <a href="http://gett.com/ru/">Gett</a>, <a href="https://www.hailoapp.com/">Hailo</a>, and <a href="https://us.mytaxi.com/index.html/">MyTaxi</a> in select cities across Ireland, Poland, Italy, Austria, Russia, and Israel (Android, iOS). <br /><br /><div><span><span><img height="498" src="https://lh4.googleusercontent.com/Wc_V_YSbGAJj5ZFHScbaFgr-OhxzU5eKP423toCpJ3mGUePDL_1UsBQEaJmkDD4NfBqitvRnSOFl9Y6Cg2ASF5rjpKXk41SgPrikXXYUx5Z9nv6I6VZ-JMRnAWAbFeHMKabckfTK" width="280"></span><span><img height="497" src="https://lh3.googleusercontent.com/OfXaMLo8SqC1FphXZFW0f-LuvbpPANCqDUUvrpfJurdtpdK3D24zEmZR2Ey25AELZVlFW_D14DztYZF5eCHFM0XJroMyD642GjFRcLrxRexd-N3A1GhQTvpMP9PyIi5OKDmJOAdo" width="279"></span></span></div><div><span></span></div>Commuting around your own city can be a battle and navigating around a foreign land can be ten times tougher. Using Google Maps offline and comparing between ride service options help make it a little easier so you can spend more time living and less time figuring out how to get places.<br /><i><br />Posted by Amanda Bishop, Product Manager, Google Maps </i><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />]]></description>
				<content:encoded><![CDATA[Starting today it just got a little easier to get around town with Google Maps – even when you run into some of the most frustrating travel scenarios around.<br /><br /><b>Scenario 1: You live or are traveling around a place with expensive data or spotty service </b><br />We’ve all been through this -- whether in our own backyard or a different country. You need to get directions, but you don’t have service. Or you do have service – but it’s spotty – so you find yourself staring at the map in a perpetual state of loading while you sit in your car waiting to find out which way to go. Now, when you know you’ll have spotty service or just want to save on data, you can toggle to “Wi-fi only” to use Google Maps entirely offline on Android. And the best part is that you can still use other apps and the rest of your phone as you normally would. You might even save on battery life too. <br /><br /><div style="text-align: center;"><span id="docs-internal-guid-9768fbd9-6c7b-ce79-ab0f-0ce9ffa0708b"><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><img alt="81M6LszJB4Z.png" height="491" src="https://lh3.googleusercontent.com/NR-NfvfWSZ3SHzI7khuQ3a4D9AJWT2IHSz-5tKC7e8ALnuqfyOowIp-EsdOltyklBzo-ggXQl6AFDHnACBLMAa5B0dHFqpkYU24oDSQr__tRZXtS-BpPig9N6-xVVcJv9o1AWrbJ" style="border: 1px solid rgb(243, 243, 243); transform: rotate(0rad);" width="277" /></span></span></div><br /><b>Scenario 2: You’re running out of storage</b><br />Entry-level smartphones come with internal storage capacities as low as 4GB, while higher-end models range between 8GB and 32GB. For many of us, that’s not enough for all the videos, music, apps, and photos we cram onto our beloved smartphones. To ensure that Google Maps users with any storage capacity can download and use offline areas when they need them most, we’ve added the ability to download your offline areas to an external SD card (if your device supports them) on Google Maps for Android. Now you’ll never have to choose between snapping more food photos or the ability to navigate offline. <br /><br /><div style="text-align: center;"><span id="docs-internal-guid-9768fbd9-6c7c-8f99-2f8f-ca1cc6f26bb9"><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"><img height="500" src="https://lh5.googleusercontent.com/kLrNotzYbFv0MZgf7BLUY6xpDRFYtnl3ZfQCmggE4S6UcO2GkQEr2Jhu107YazI_QaZVIgu0jivh_o-AaLChx4udo3_2I_apV-7-JkNRnixFsnCDevIOivi5lDniqWUAycaZEH2y" style="border: none; transform: rotate(0rad);" width="284" /></span></span></div><div style="text-align: center;"><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"><br /></span></div><b>Scenario 3: You just want someone else to do the driving </b><br />Sometimes you just need to get somewhere fast and don't want to drive, walk, or take public transportation. In March, we introduced a dedicated mode where users can easily compare ride service options without having to open multiple apps. In addition to showing options from Uber, we're now showing <a href="https://www.go-jek.com/">GO-JEK</a> rides in three cities in Indonesia with ten more cities coming soon (Android, rolling out on iOS) and <a href="http://www.grab.com/sg/">Grab</a> rides in 24 cities throughout Indonesia, Malaysia, Philippines, Singapore, and Thailand (Android, rolling out on iOS). We've also expanded the availability of <a href="http://gett.com/ru/">Gett</a>, <a href="https://www.hailoapp.com/">Hailo</a>, and <a href="https://us.mytaxi.com/index.html/">MyTaxi</a> in select cities across Ireland, Poland, Italy, Austria, Russia, and Israel (Android, iOS). <br /><br /><div style="text-align: center;"><span id="docs-internal-guid-9768fbd9-6c7e-9c05-57b4-b128c6451b52"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="498" src="https://lh4.googleusercontent.com/Wc_V_YSbGAJj5ZFHScbaFgr-OhxzU5eKP423toCpJ3mGUePDL_1UsBQEaJmkDD4NfBqitvRnSOFl9Y6Cg2ASF5rjpKXk41SgPrikXXYUx5Z9nv6I6VZ-JMRnAWAbFeHMKabckfTK" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="280" />      </span><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="497" src="https://lh3.googleusercontent.com/OfXaMLo8SqC1FphXZFW0f-LuvbpPANCqDUUvrpfJurdtpdK3D24zEmZR2Ey25AELZVlFW_D14DztYZF5eCHFM0XJroMyD642GjFRcLrxRexd-N3A1GhQTvpMP9PyIi5OKDmJOAdo" style="border: none; transform: rotate(0rad);" width="279" /></span></span></div><div style="text-align: center;"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"></span></div>Commuting around your own city can be a battle and navigating around a foreign land can be ten times tougher. Using Google Maps offline and comparing between ride service options help make it a little easier so you can spend more time living and less time figuring out how to get places.<br /><i><br />Posted by Amanda Bishop, Product Manager, Google Maps </i><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/get-around-town-a-little-easier-with-new-offline-features-and-ride-service-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Google Maps goes for the win with Rio updates</title>
		<link>https://googledata.org/google-earth/google-maps-goes-for-the-win-with-rio-updates/</link>
		<comments>https://googledata.org/google-earth/google-maps-goes-for-the-win-with-rio-updates/#comments</comments>
		<pubDate>Fri, 05 Aug 2016 12:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=7c636eebb89b73cd6defb8ca6ebd8bad</guid>
		<description><![CDATA[Mapping a sprawling, densely populated city of 6 million people like Rio de Janeiro is a tough task. With an extra 10,000 athletes, half a million travelers, and tens of thousands of volunteers heading to the city this month, you can expect additional friction caused by road closures, traffic, and jam-packed attractions. Google Maps is putting the finishing touches on some first prize-worthy updates to help tourists and Rio residents alike get around &#8220;the Marvelous City&#8221; with ease. We even threw in a couple changes for those enjoying the events from home to feel like they&#8217;re in the middle of the action. <br /><br /><b>Getting around Rio without a hitch </b><br />For folks on the ground in Rio, Maps can be your real-world assistant, helping you get where you&#8217;re going via whichever mode of transportation you prefer. In April, we launched real-time transit for 1,300 bus lines in the &#8203;&#8203;Rio metro area, as well as bike routes throughout Rio and the rest of Brazil. <br /><br /><div><a href="https://2.bp.blogspot.com/-lDoZSZaVlwc/V6QQULx8TKI/AAAAAAAAE7c/J5OENzSKi-8390Kdc_A131LbWkggfjkuwCLcB/s1600/TransitBrazil.jpg"><img border="0" height="640" src="https://2.bp.blogspot.com/-lDoZSZaVlwc/V6QQULx8TKI/AAAAAAAAE7c/J5OENzSKi-8390Kdc_A131LbWkggfjkuwCLcB/s640/TransitBrazil.jpg" width="360"></a></div><br />Construction, security and crowds during large-scale events can put a damper on a driver&#8217;s day. We&#8217;re working with the City of Rio to make sure Google Maps has the most up-to-date info on traffic, road closures and detours and help get you where you&#8217;re going faster.<br /><br />Breezing through traffic and beating the crowds is reason for celebration. With the Explore feature on Google Maps for Android and iOS in Brazil, anyone can uncover the local gems wherever you go by simply tapping &#8220;Explore food &#38; drinks near you&#8221; at the bottom of the app. From there you can swipe through the best breakfast, lunch, coffee, dinner, and drinks spots around them. <br /><br /><div><a href="https://3.bp.blogspot.com/-HM8eOBeUR0o/V6QVRdyxcVI/AAAAAAAAE8I/hBLTbJe9dUU-eQh9j1WvOrHieihqeb4fwCLcB/s1600/ExploreBrazil.png"><img border="0" height="640" src="https://3.bp.blogspot.com/-HM8eOBeUR0o/V6QVRdyxcVI/AAAAAAAAE8I/hBLTbJe9dUU-eQh9j1WvOrHieihqeb4fwCLcB/s640/ExploreBrazil.png" width="360"></a></div><br /><b>Getting all of Rio on the Map</b><br />The favelas of Rio aren&#8217;t well-known to many outsiders, partly because there&#8217;s limited information about these areas to include on maps. We partnered with the local Brazilian nonprofit Grupo Cultural <a href="http://www.afroreggae.org/">AfroReggae</a> on a project called &#8220;T&#225; No Mapa&#8221; (&#8220;It&#8217;s On the Map&#8221; in English). Together with AfroReggae we trained 150 favela residents on digital mapping skills and in just two years they&#8217;ve mapped 26 favelas and gotten more than 3,000 businesses on the map. Not only does this allow locals to find businesses like <a href="https://www.google.com.br/webhp?sourceid=chrome-instant&#38;ion=1&#38;espv=2&#38;ie=UTF-8#safe=off&#38;q=bar+do+david">Bar do David</a>&#8212;an award-winning restaurant in the favela Chapeu Mangueira&#8212;it&#8217;s helped some local residents get a mailing address for the first time.<br /><br /><div><a href="https://4.bp.blogspot.com/-4Rw08-0p7go/V6QRZnvbx0I/AAAAAAAAE7k/8W11vubXoQ8-bzE0T18HQfaA22CGP7A3gCLcB/s1600/Before.png"><img border="0" height="360" src="https://4.bp.blogspot.com/-4Rw08-0p7go/V6QRZnvbx0I/AAAAAAAAE7k/8W11vubXoQ8-bzE0T18HQfaA22CGP7A3gCLcB/s640/Before.png" width="640"></a></div><br /><div><a href="https://2.bp.blogspot.com/-yl-rQ2TJ9E0/V6QReua50eI/AAAAAAAAE7o/S7B2SXtm5ZEgP74jiSs2RPRNPPUwOTLeACLcB/s1600/After.png"><img border="0" height="360" src="https://2.bp.blogspot.com/-yl-rQ2TJ9E0/V6QReua50eI/AAAAAAAAE7o/S7B2SXtm5ZEgP74jiSs2RPRNPPUwOTLeACLcB/s640/After.png" width="640"></a></div><b><br />Getting in on the action from home </b><br />For those of you (*raises hand*) who can&#8217;t make it to Rio this summer, you can still get in on the excitement from the comfort of your home. We refreshed our Google Street View imagery to give virtual travelers an insider's look at the stadiums. You can almost taste the caipirinhas! <br /><br /><div><a href="https://3.bp.blogspot.com/-9SD2DtzNsC4/V6QTeAW-bnI/AAAAAAAAE70/NZVRBWv5r0sw1h1JzrUCMxmPDANR_ApDACLcB/s1600/Trekker.png"><img border="0" height="427" src="https://3.bp.blogspot.com/-9SD2DtzNsC4/V6QTeAW-bnI/AAAAAAAAE70/NZVRBWv5r0sw1h1JzrUCMxmPDANR_ApDACLcB/s640/Trekker.png" width="640"></a></div><br />For those who really want to feel like they&#8217;re in the the game, we also launched indoor maps of all 25 official indoor venues and added more details to the maps of the 12 outdoor venues &#8211; like the custom-made golf course where you can now practically see all 18 holes. <br /><br /><div><a href="https://1.bp.blogspot.com/-S2DIneL3IvI/V6QTo3UDWpI/AAAAAAAAE74/U1Ha2GvD9OcVPdwe0r8irsMcNFUC5s4vwCLcB/s1600/Maracana.png"><img border="0" height="360" src="https://1.bp.blogspot.com/-S2DIneL3IvI/V6QTo3UDWpI/AAAAAAAAE74/U1Ha2GvD9OcVPdwe0r8irsMcNFUC5s4vwCLcB/s640/Maracana.png" width="640"></a></div><br />No matter what city you find yourself in this summer, these very same features can help you find the perfect spot to watch the action and get there with ease.<br /><br /><i>Posted by Marcus Leal, Product Manager, Google Maps </i><br /><br /><br /><br />]]></description>
				<content:encoded><![CDATA[Mapping a sprawling, densely populated city of 6 million people like Rio de Janeiro is a tough task. With an extra 10,000 athletes, half a million travelers, and tens of thousands of volunteers heading to the city this month, you can expect additional friction caused by road closures, traffic, and jam-packed attractions. Google Maps is putting the finishing touches on some first prize-worthy updates to help tourists and Rio residents alike get around “the Marvelous City” with ease. We even threw in a couple changes for those enjoying the events from home to feel like they’re in the middle of the action. <br /><br /><b>Getting around Rio without a hitch </b><br />For folks on the ground in Rio, Maps can be your real-world assistant, helping you get where you’re going via whichever mode of transportation you prefer. In April, we launched real-time transit for 1,300 bus lines in the ​​Rio metro area, as well as bike routes throughout Rio and the rest of Brazil. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-lDoZSZaVlwc/V6QQULx8TKI/AAAAAAAAE7c/J5OENzSKi-8390Kdc_A131LbWkggfjkuwCLcB/s1600/TransitBrazil.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="https://2.bp.blogspot.com/-lDoZSZaVlwc/V6QQULx8TKI/AAAAAAAAE7c/J5OENzSKi-8390Kdc_A131LbWkggfjkuwCLcB/s640/TransitBrazil.jpg" width="360" /></a></div><br />Construction, security and crowds during large-scale events can put a damper on a driver’s day. We’re working with the City of Rio to make sure Google Maps has the most up-to-date info on traffic, road closures and detours and help get you where you’re going faster.<br /><br />Breezing through traffic and beating the crowds is reason for celebration. With the Explore feature on Google Maps for Android and iOS in Brazil, anyone can uncover the local gems wherever you go by simply tapping “Explore food &amp; drinks near you” at the bottom of the app. From there you can swipe through the best breakfast, lunch, coffee, dinner, and drinks spots around them. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-HM8eOBeUR0o/V6QVRdyxcVI/AAAAAAAAE8I/hBLTbJe9dUU-eQh9j1WvOrHieihqeb4fwCLcB/s1600/ExploreBrazil.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="https://3.bp.blogspot.com/-HM8eOBeUR0o/V6QVRdyxcVI/AAAAAAAAE8I/hBLTbJe9dUU-eQh9j1WvOrHieihqeb4fwCLcB/s640/ExploreBrazil.png" width="360" /></a></div><br /><b>Getting all of Rio on the Map</b><br />The favelas of Rio aren’t well-known to many outsiders, partly because there’s limited information about these areas to include on maps. We partnered with the local Brazilian nonprofit Grupo Cultural <a href="http://www.afroreggae.org/">AfroReggae</a> on a project called “Tá No Mapa” (“It’s On the Map” in English). Together with AfroReggae we trained 150 favela residents on digital mapping skills and in just two years they’ve mapped 26 favelas and gotten more than 3,000 businesses on the map. Not only does this allow locals to find businesses like <a href="https://www.google.com.br/webhp?sourceid=chrome-instant&amp;ion=1&amp;espv=2&amp;ie=UTF-8#safe=off&amp;q=bar+do+david">Bar do David</a>—an award-winning restaurant in the favela Chapeu Mangueira—it’s helped some local residents get a mailing address for the first time.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-4Rw08-0p7go/V6QRZnvbx0I/AAAAAAAAE7k/8W11vubXoQ8-bzE0T18HQfaA22CGP7A3gCLcB/s1600/Before.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="360" src="https://4.bp.blogspot.com/-4Rw08-0p7go/V6QRZnvbx0I/AAAAAAAAE7k/8W11vubXoQ8-bzE0T18HQfaA22CGP7A3gCLcB/s640/Before.png" width="640" /></a></div><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-yl-rQ2TJ9E0/V6QReua50eI/AAAAAAAAE7o/S7B2SXtm5ZEgP74jiSs2RPRNPPUwOTLeACLcB/s1600/After.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="360" src="https://2.bp.blogspot.com/-yl-rQ2TJ9E0/V6QReua50eI/AAAAAAAAE7o/S7B2SXtm5ZEgP74jiSs2RPRNPPUwOTLeACLcB/s640/After.png" width="640" /></a></div><b><br />Getting in on the action from home </b><br />For those of you (*raises hand*) who can’t make it to Rio this summer, you can still get in on the excitement from the comfort of your home. We refreshed our Google Street View imagery to give virtual travelers an insider's look at the stadiums. You can almost taste the caipirinhas! <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-9SD2DtzNsC4/V6QTeAW-bnI/AAAAAAAAE70/NZVRBWv5r0sw1h1JzrUCMxmPDANR_ApDACLcB/s1600/Trekker.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="427" src="https://3.bp.blogspot.com/-9SD2DtzNsC4/V6QTeAW-bnI/AAAAAAAAE70/NZVRBWv5r0sw1h1JzrUCMxmPDANR_ApDACLcB/s640/Trekker.png" width="640" /></a></div><br />For those who really want to feel like they’re in the the game, we also launched indoor maps of all 25 official indoor venues and added more details to the maps of the 12 outdoor venues – like the custom-made golf course where you can now practically see all 18 holes. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-S2DIneL3IvI/V6QTo3UDWpI/AAAAAAAAE74/U1Ha2GvD9OcVPdwe0r8irsMcNFUC5s4vwCLcB/s1600/Maracana.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="360" src="https://1.bp.blogspot.com/-S2DIneL3IvI/V6QTo3UDWpI/AAAAAAAAE74/U1Ha2GvD9OcVPdwe0r8irsMcNFUC5s4vwCLcB/s640/Maracana.png" width="640" /></a></div><br />No matter what city you find yourself in this summer, these very same features can help you find the perfect spot to watch the action and get there with ease.<br /><br /><i>Posted by Marcus Leal, Product Manager, Google Maps </i><br /><br /><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/google-maps-goes-for-the-win-with-rio-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>An experiment built with 3D Google Maps imagery, inspired by kids</title>
		<link>https://googledata.org/google-earth/an-experiment-built-with-3d-google-maps-imagery-inspired-by-kids/</link>
		<comments>https://googledata.org/google-earth/an-experiment-built-with-3d-google-maps-imagery-inspired-by-kids/#comments</comments>
		<pubDate>Wed, 03 Aug 2016 14:07:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=903174a55a6f0c00d36271d2a2e6f818</guid>
		<description><![CDATA[<div><br /></div><div></div><br /><br />For years, Google Maps has been adding 3D imagery from all over the world &#8211; <a href="https://www.google.com/maps/@40.7839326,-73.9642724,336a,20y,209.24h,83.39t/data=!3m1!1e3">New York City</a>, the <a href="https://www.google.com/maps/@36.3014493,-112.902689,751a,20y,200.73h,81.76t/data=!3m1!1e3">Grand Canyon</a>, <a href="https://www.google.com/maps/@45.7119655,6.5315795,6690a,20y,63.43h,81.15t/data=!3m1!1e3">Mont Blanc</a>, and more. A few of us started wondering if this 3D imagery could make learning about the world a bit more fun for kids. We started playing with quick prototypes, and even brainstormed with our own kids to get inspired by their sense of curiosity.<br /><br />Our idea became a new, experimental app called Verne: The Himalayas. It invites you to explore the Himalayas as a 500 foot Yeti named Verne. You can run up Mt. Everest, chase yaks, discover bits of information, ride a jetpack, play Himalayan instruments, and more.<br /><br />We're excited to share it today as a fun way for anyone to take a summer trip to the tallest mountain range in the world. <a href="https://play.google.com/store/apps/details?id=com.withgoogle.verne">Get the app</a> for your Android device from the Play Store, or <a href="https://verne.withgoogle.com/">learn more here</a>.<br /><br /><i>Posted by: Amar Gandhi and JR Schmidt - 3D tinkerers and Yeti Enthusiasts</i><br /><br /><br /><br />]]></description>
				<content:encoded><![CDATA[<div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/fPk3gxVWV_I" width="560"></iframe></div><br /><br />For years, Google Maps has been adding 3D imagery from all over the world – <a href="https://www.google.com/maps/@40.7839326,-73.9642724,336a,20y,209.24h,83.39t/data=!3m1!1e3">New York City</a>, the <a href="https://www.google.com/maps/@36.3014493,-112.902689,751a,20y,200.73h,81.76t/data=!3m1!1e3">Grand Canyon</a>, <a href="https://www.google.com/maps/@45.7119655,6.5315795,6690a,20y,63.43h,81.15t/data=!3m1!1e3">Mont Blanc</a>, and more. A few of us started wondering if this 3D imagery could make learning about the world a bit more fun for kids. We started playing with quick prototypes, and even brainstormed with our own kids to get inspired by their sense of curiosity.<br /><br />Our idea became a new, experimental app called Verne: The Himalayas. It invites you to explore the Himalayas as a 500 foot Yeti named Verne. You can run up Mt. Everest, chase yaks, discover bits of information, ride a jetpack, play Himalayan instruments, and more.<br /><br />We're excited to share it today as a fun way for anyone to take a summer trip to the tallest mountain range in the world. <a href="https://play.google.com/store/apps/details?id=com.withgoogle.verne">Get the app</a> for your Android device from the Play Store, or <a href="https://verne.withgoogle.com/">learn more here</a>.<br /><br /><i>Posted by: Amar Gandhi and JR Schmidt - 3D tinkerers and Yeti Enthusiasts</i><br /><br /><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/an-experiment-built-with-3d-google-maps-imagery-inspired-by-kids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Keep users focused on what&#8217;s important with the latest Google Maps Android API</title>
		<link>https://googledata.org/google-maps/keep-users-focused-on-whats-important-with-the-latest-google-maps-android-api/</link>
		<comments>https://googledata.org/google-maps/keep-users-focused-on-whats-important-with-the-latest-google-maps-android-api/#comments</comments>
		<pubDate>Mon, 01 Aug 2016 23:44:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=f35d261a51d1d3b8fd723e7ce8da13d6</guid>
		<description><![CDATA[Released today, the latest version of the Google Maps Android API includes more developer requested features: you can now track camera movements more accurately via our new camera listeners, set the minimum &#38; maximum zoom levels on your map, and restrict the user&#8217;s panning to particular lat/lng bounds of the camera target. In addition, we&#8217;ve added a new marker Tag&#160;property so you can now associate your own data object with a marker.<br /><br /><h4>
Track camera movements more accurately</h4>
As one of our top requests, developers have been asking for a better way to track camera movements and the ability to see why the camera is moving, whether caused by user gestures, built-in API animations or developer controlled movements [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=4636" target="_blank">Issue 4636</a>]. Our new camera change listeners support you in doing this. Your app can now receive notifications for camera start, ongoing, and end events.<br /><br />
See the developer&#8217;s guide to <a href="https://developers.google.com/maps/documentation/android-api/events#camera_change_events" target="_blank">camera change events</a> and take a look at this <a href="https://github.com/googlemaps/android-samples/blob/master/ApiDemos/app/src/main/java/com/example/mapdemo/CameraDemoActivity.java" target="_blank">code sample</a> which shows you how to detect when the user drags the map, and draws a line to track this movement when it happens.<br /><br /><h4>
Control the zooming, panning and scrolling experience</h4>
Have you ever wanted to be able to control how much your user can zoom in and out and pan around on your map so that you can more tightly control the experience? Or have you got tile overlays only for zoom levels 15 through 20 and wish you could limit the zooming capability of both the map and your tile overlays to those particular levels?<br /><br />
You can now set the min and max zoom levels on your map by using <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap#setMinZoomPreference(float)" target="_blank">GoogleMap.setMinZoomPreference()</a></span> and <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap#setMaxZoomPreference(float)" target="_blank">GoogleMap.setMaxZoomPreference()</a></span> [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=4663" target="_blank">Issue 4663</a>]. These zoom levels will also apply to any tile overlays you have on your map.<br /><br />
In addition, you can also constrain the lat/lng center bounds of the focal point of the map (the camera target) so that users can only scroll and pan within these bounds using <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap#setLatLngBoundsForCameraTarget(com.google.android.gms.maps.model.LatLngBounds)" target="_blank">GoogleMap.setLatLngBoundsForCameraTarget()</a></span>. This is awesome if you want your users to stay within the map area of your tile overlays, or you wish to confine the map in your app to a particular local area.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://1.bp.blogspot.com/-NAtR_DYU77Y/V5_Y8pZT4-I/AAAAAAAAAh4/ZDtRwMg4ZNElL9kncbwQjmLOgLbqholtACLcB/s1600/clamp.gif"><img border="0" height="195" src="https://1.bp.blogspot.com/-NAtR_DYU77Y/V5_Y8pZT4-I/AAAAAAAAAh4/ZDtRwMg4ZNElL9kncbwQjmLOgLbqholtACLcB/s400/clamp.gif" width="400"></a></td></tr><tr><td><div>
<span>Pan and zoom limits on a map for Adelaide, a beautiful city in South Australia</span></div>
</td></tr></tbody></table>
See the developer&#8217;s guide to learn more about <a href="https://developers.google.com/maps/documentation/android-api/views#setting_boundaries" target="_blank">setting boundaries on the map</a> as well as this <a href="https://github.com/googlemaps/android-samples/blob/master/ApiDemos/app/src/main/java/com/example/mapdemo/CameraClampingDemoActivity.java" target="_blank">code sample</a>.<br /><br /><h4>
Marker tags</h4>
Does your app cater for different types of markers and you want to treat them differently when a user taps on them? Or do you want to assign priorities to your markers? The new marker Tag property allows you to <a href="https://developers.google.com/maps/documentation/android-api/marker#associate_data_with_a_marker" target="_blank">associate whatever data object you like with a marker</a>, supporting you in doing this and more [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=4650" target="_blank">Issue 4650</a>].<br /><br />
A big thank you to Android developers everywhere for using the Google Maps Android API and submitting feedback via the <a href="https://code.google.com/p/gmaps-api-issues/" target="_blank">issue tracker</a>.<br /><br />
Our <a href="https://developers.google.com/maps/documentation/android-api/releases" target="_blank">release notes</a> contain details of bugs fixed as well as the features mentioned in this post. Take a look and start using our new features today!<br /><table><tbody><tr><td><img alt="author image" border="0" src="https://lh3.googleusercontent.com/6vY84AOYgFkem78tpMCEVfW5XJJ3jQkP5GC1-q3jfcwXiuLoyhal527iFmM02FL43vk6XV7XIqnU7daYNMxDwOKqr5RZK4bdnYXQlyBrpfr-DwO5u2tqFVBtj6ZgpdEfxV2v7Ocy"></td>  <td><i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i></td></tr></tbody></table><br /><br />]]></description>
				<content:encoded><![CDATA[Released today, the latest version of the Google Maps Android API includes more developer requested features: you can now track camera movements more accurately via our new camera listeners, set the minimum &amp; maximum zoom levels on your map, and restrict the user’s panning to particular lat/lng bounds of the camera target. In addition, we’ve added a new marker Tag&nbsp;property so you can now associate your own data object with a marker.<br />
<br />
<h4>
Track camera movements more accurately</h4>
As one of our top requests, developers have been asking for a better way to track camera movements and the ability to see why the camera is moving, whether caused by user gestures, built-in API animations or developer controlled movements [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=4636" >Issue 4636</a>]. Our new camera change listeners support you in doing this. Your app can now receive notifications for camera start, ongoing, and end events.<br />
<br />
See the developer’s guide to <a href="https://developers.google.com/maps/documentation/android-api/events#camera_change_events" >camera change events</a> and take a look at this <a href="https://github.com/googlemaps/android-samples/blob/master/ApiDemos/app/src/main/java/com/example/mapdemo/CameraDemoActivity.java" >code sample</a> which shows you how to detect when the user drags the map, and draws a line to track this movement when it happens.<br />
<br />
<h4>
Control the zooming, panning and scrolling experience</h4>
Have you ever wanted to be able to control how much your user can zoom in and out and pan around on your map so that you can more tightly control the experience? Or have you got tile overlays only for zoom levels 15 through 20 and wish you could limit the zooming capability of both the map and your tile overlays to those particular levels?<br />
<br />
You can now set the min and max zoom levels on your map by using <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap#setMinZoomPreference(float)" >GoogleMap.setMinZoomPreference()</a></span> and <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap#setMaxZoomPreference(float)" >GoogleMap.setMaxZoomPreference()</a></span> [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=4663" >Issue 4663</a>]. These zoom levels will also apply to any tile overlays you have on your map.<br />
<br />
In addition, you can also constrain the lat/lng center bounds of the focal point of the map (the camera target) so that users can only scroll and pan within these bounds using <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap#setLatLngBoundsForCameraTarget(com.google.android.gms.maps.model.LatLngBounds)" >GoogleMap.setLatLngBoundsForCameraTarget()</a></span>. This is awesome if you want your users to stay within the map area of your tile overlays, or you wish to confine the map in your app to a particular local area.<br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><a href="https://1.bp.blogspot.com/-NAtR_DYU77Y/V5_Y8pZT4-I/AAAAAAAAAh4/ZDtRwMg4ZNElL9kncbwQjmLOgLbqholtACLcB/s1600/clamp.gif" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="195" src="https://1.bp.blogspot.com/-NAtR_DYU77Y/V5_Y8pZT4-I/AAAAAAAAAh4/ZDtRwMg4ZNElL9kncbwQjmLOgLbqholtACLcB/s400/clamp.gif" width="400" /></a></td></tr>
<tr><td class="tr-caption" style="text-align: center;"><div class="p1">
<span class="s1">Pan and zoom limits on a map for Adelaide, a beautiful city in South Australia</span></div>
</td></tr>
</tbody></table>
See the developer’s guide to learn more about <a href="https://developers.google.com/maps/documentation/android-api/views#setting_boundaries" >setting boundaries on the map</a> as well as this <a href="https://github.com/googlemaps/android-samples/blob/master/ApiDemos/app/src/main/java/com/example/mapdemo/CameraClampingDemoActivity.java" >code sample</a>.<br />
<br />
<h4>
Marker tags</h4>
Does your app cater for different types of markers and you want to treat them differently when a user taps on them? Or do you want to assign priorities to your markers? The new marker Tag property allows you to <a href="https://developers.google.com/maps/documentation/android-api/marker#associate_data_with_a_marker" >associate whatever data object you like with a marker</a>, supporting you in doing this and more [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=4650" >Issue 4650</a>].<br />
<br />
A big thank you to Android developers everywhere for using the Google Maps Android API and submitting feedback via the <a href="https://code.google.com/p/gmaps-api-issues/" >issue tracker</a>.<br />
<br />
Our <a href="https://developers.google.com/maps/documentation/android-api/releases" >release notes</a> contain details of bugs fixed as well as the features mentioned in this post. Take a look and start using our new features today!<br />
<table><tbody>
<tr> <td style="width: 80px;"><img alt="author image" border="0" src="https://lh3.googleusercontent.com/6vY84AOYgFkem78tpMCEVfW5XJJ3jQkP5GC1-q3jfcwXiuLoyhal527iFmM02FL43vk6XV7XIqnU7daYNMxDwOKqr5RZK4bdnYXQlyBrpfr-DwO5u2tqFVBtj6ZgpdEfxV2v7Ocy" style="border-radius: 50%; text-align: center; width: 80px;" /></td>  <td><i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i></td></tr>
</tbody></table>
<br />
<br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/keep-users-focused-on-whats-important-with-the-latest-google-maps-android-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Now you can build multi-stop road trips on Google Maps for iOS</title>
		<link>https://googledata.org/google-earth/now-you-can-build-multi-stop-road-trips-on-google-maps-for-ios/</link>
		<comments>https://googledata.org/google-earth/now-you-can-build-multi-stop-road-trips-on-google-maps-for-ios/#comments</comments>
		<pubDate>Fri, 29 Jul 2016 21:50:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=d6331cce3a7f7e3a15df85c33a66af71</guid>
		<description><![CDATA[With many people looking to sneak one more getaway into their summer plans, we&#8217;ve launched multi-stop directions for Google Maps on iOS (already available on Android). Here&#8217;s how it works: Just open the app, enter a destination, tap the corner menu, and then tap &#8220;Add stop&#8221;.  To rearrange the order of your stops, tap and hold the stop you want to move and drag it to the position you want. Once you&#8217;ve added all your stops, tap &#8220;Done&#8221; and your multi-stop route is complete. When you enter navigation mode you&#8217;ll have the same seamless driving experience you&#8217;re used to, whether you&#8217;re going from errand to errand or hitting scenic spots along Route 66.<br /><br /><div><a href="https://1.bp.blogspot.com/-j6tVVK8TfLY/V5vPMmWOfMI/AAAAAAAAE7M/L7fWl5CYDQkmWHeN9Sp-1ZprpQ_BQUB5gCLcB/s1600/MWP2.PNG"><img border="0" height="640" src="https://1.bp.blogspot.com/-j6tVVK8TfLY/V5vPMmWOfMI/AAAAAAAAE7M/L7fWl5CYDQkmWHeN9Sp-1ZprpQ_BQUB5gCLcB/s640/MWP2.PNG" width="360"></a></div><br /><i>Posted by Aditya Dhanrajani, Product Manager, Google Maps</i>]]></description>
				<content:encoded><![CDATA[With many people looking to sneak one more getaway into their summer plans, we’ve launched multi-stop directions for Google Maps on iOS (already available on Android). Here’s how it works: Just open the app, enter a destination, tap the corner menu, and then tap “Add stop”.  To rearrange the order of your stops, tap and hold the stop you want to move and drag it to the position you want. Once you’ve added all your stops, tap “Done” and your multi-stop route is complete. When you enter navigation mode you’ll have the same seamless driving experience you’re used to, whether you’re going from errand to errand or hitting scenic spots along Route 66.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-j6tVVK8TfLY/V5vPMmWOfMI/AAAAAAAAE7M/L7fWl5CYDQkmWHeN9Sp-1ZprpQ_BQUB5gCLcB/s1600/MWP2.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="https://1.bp.blogspot.com/-j6tVVK8TfLY/V5vPMmWOfMI/AAAAAAAAE7M/L7fWl5CYDQkmWHeN9Sp-1ZprpQ_BQUB5gCLcB/s640/MWP2.PNG" width="360" /></a></div><br /><i>Posted by Aditya Dhanrajani, Product Manager, Google Maps</i>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/now-you-can-build-multi-stop-road-trips-on-google-maps-for-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>New Zagat iOS app: Tap into tailored, trustworthy dining recommendations &#8212; wherever you may be</title>
		<link>https://googledata.org/google-earth/new-zagat-ios-app-tap-into-tailored-trustworthy-dining-recommendations-wherever-you-may-be/</link>
		<comments>https://googledata.org/google-earth/new-zagat-ios-app-tap-into-tailored-trustworthy-dining-recommendations-wherever-you-may-be/#comments</comments>
		<pubDate>Tue, 26 Jul 2016 12:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=d36469d612a0b775ba51d0713d2b0448</guid>
		<description><![CDATA[For over three decades, Zagat has been dishing out trustworthy guidance for urban foodies across the US. We thought it was time to spice up Zagat&#8217;s look and refresh its <a href="https://itunes.apple.com/us/app/zagat-restaurant-reviews-trusted/id669821485?mt=8">mobile iOS app</a> in order to provide relevant restaurant recommendations for diners on the go. Looking for new watering holes in your area or wanting the top recommended dining spots for the city you&#8217;re visiting? Zagat now makes it simple and easy using its reliable recipe that looks at the wisdom of the crowds combined with hand-crafted reviews. Check out the <a href="http://zagat.blogspot.com/2016/07/new-zagat-ios-app-tap-into-tailored.html">Zagat blog</a> for more details. <br /><br /><i>Author: Laura Slabin, Director, Local Content &#38; Community</i>]]></description>
				<content:encoded><![CDATA[For over three decades, Zagat has been dishing out trustworthy guidance for urban foodies across the US. We thought it was time to spice up Zagat’s look and refresh its <a href="https://itunes.apple.com/us/app/zagat-restaurant-reviews-trusted/id669821485?mt=8">mobile iOS app</a> in order to provide relevant restaurant recommendations for diners on the go. Looking for new watering holes in your area or wanting the top recommended dining spots for the city you’re visiting? Zagat now makes it simple and easy using its reliable recipe that looks at the wisdom of the crowds combined with hand-crafted reviews. Check out the <a href="http://zagat.blogspot.com/2016/07/new-zagat-ios-app-tap-into-tailored.html">Zagat blog</a> for more details. <br /><br /><i>Author: Laura Slabin, Director, Local Content &amp; Community</i>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/new-zagat-ios-app-tap-into-tailored-trustworthy-dining-recommendations-wherever-you-may-be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Google Places API for iOS &amp; Google Maps SDK for iOS are now in separate CocoaPods</title>
		<link>https://googledata.org/google-maps/google-places-api-for-ios-google-maps-sdk-for-ios-are-now-in-separate-cocoapods/</link>
		<comments>https://googledata.org/google-maps/google-places-api-for-ios-google-maps-sdk-for-ios-are-now-in-separate-cocoapods/#comments</comments>
		<pubDate>Tue, 26 Jul 2016 00:27:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=37a539d2b2548cec32c791ebe83b15d8</guid>
		<description><![CDATA[In today&#8217;s release, the Google Places API for iOS 2.0 and the Google Maps SDK for iOS 2.0 are now in separate CocoaPods. For developers who only use the Google Places API for iOS, this will significantly reduce the binary size of their app.<br /><br /><h4>
What does this mean for me? What do I have to do?</h4>
Nothing immediately for your current implementation, but we strongly suggest that you upgrade within the next year to the new Google Maps SDK for iOS 2.0 and Google Places API for iOS 2.0. The Google Maps for iOS SDK Version 1.x will become unsupported in one year&#8217;s time.<br /><br />
If you are using the Standard Plan Google Maps SDK for iOS 1.x, and haven&#8217;t specified a version in your podfile, you will be automatically upgraded to the new Google Maps SDK for iOS 2.0 when you run &#8216;pod update&#8217;. If you use any Places functionality, we&#8217;ve created this <a href="https://developers.google.com/places/migrate-to-v2" target="_blank">migration guide for the Places API</a> to step you through the process of migrating to the new Google Places API for iOS 2.0. <br /><br />
In addition, we&#8217;ve documented how to extract all the frameworks (<a href="https://developers.google.com/maps/documentation/ios-sdk/start#step_2_install_the_sdk" target="_blank">Maps</a>, <a href="https://developers.google.com/places/ios-api/start#step-2-install-the-api" target="_blank">Places</a>) from the relevant CocoaPods so you can manually include the SDKs in your project rather than using CocoaPods if you wish. [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=8856" target="_blank">Issue 8856</a>]<br /><br /><h4>
What does this mean for Premium Plan Maps SDK customers?</h4>
There is no longer a separate Google Maps Premium Plan SDK. Instead it has been replaced with the new streamlined <a href="https://developers.google.com/maps/documentation/ios-sdk/releases" target="_blank">Google Maps SDK for iOS 2.0</a> for both Standard and Premium Plan developers.<br /><br />
We&#8217;ve created a <a href="https://developers.google.com/maps/premium/migrate-to-v2" target="_blank">Premium Plan migration guide</a> that will step you through the process of migrating to the new Google Maps SDK for iOS 2.0. We&#8217;ve also documented how to <a href="https://developers.google.com/maps/premium/ios-get-started#install_the_sdk" target="_blank">extract the frameworks</a> from the CocoaPods so you can manually include the SDKs in your project if you&#8217;d prefer that. Your Enterprise Maps key will continue to work, as will your Premium Plan. <br /><br />
Please note:<br />
The Google Maps SDK for iOS Premium Plan SDK 1.13.2 (current version) will be supported for one year during which time we suggest you upgrade to the new streamlined Google Maps SDK for iOS 2.0.<br /><br />
Take a look at our <a href="https://developers.google.com/maps/documentation/ios-sdk/releases" target="_blank">release notes</a> and start using version 2.0 today!<br /><table><tbody><tr><td><br /><div>
<img alt="author image" border="0" src="https://lh3.googleusercontent.com/6vY84AOYgFkem78tpMCEVfW5XJJ3jQkP5GC1-q3jfcwXiuLoyhal527iFmM02FL43vk6XV7XIqnU7daYNMxDwOKqr5RZK4bdnYXQlyBrpfr-DwO5u2tqFVBtj6ZgpdEfxV2v7Ocy"></div>
</td>  <td><i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i></td></tr></tbody></table>]]></description>
				<content:encoded><![CDATA[In today’s release, the Google Places API for iOS 2.0 and the Google Maps SDK for iOS 2.0 are now in separate CocoaPods. For developers who only use the Google Places API for iOS, this will significantly reduce the binary size of their app.<br />
<br />
<h4>
What does this mean for me? What do I have to do?</h4>
Nothing immediately for your current implementation, but we strongly suggest that you upgrade within the next year to the new Google Maps SDK for iOS 2.0 and Google Places API for iOS 2.0. The Google Maps for iOS SDK Version 1.x will become unsupported in one year’s time.<br />
<br />
If you are using the Standard Plan Google Maps SDK for iOS 1.x, and haven’t specified a version in your podfile, you will be automatically upgraded to the new Google Maps SDK for iOS 2.0 when you run ‘pod update’. If you use any Places functionality, we’ve created this <a href="https://developers.google.com/places/migrate-to-v2" >migration guide for the Places API</a> to step you through the process of migrating to the new Google Places API for iOS 2.0. <br />
<br />
In addition, we’ve documented how to extract all the frameworks (<a href="https://developers.google.com/maps/documentation/ios-sdk/start#step_2_install_the_sdk" >Maps</a>, <a href="https://developers.google.com/places/ios-api/start#step-2-install-the-api" >Places</a>) from the relevant CocoaPods so you can manually include the SDKs in your project rather than using CocoaPods if you wish. [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=8856" >Issue 8856</a>]<br />
<br />
<h4>
What does this mean for Premium Plan Maps SDK customers?</h4>
There is no longer a separate Google Maps Premium Plan SDK. Instead it has been replaced with the new streamlined <a href="https://developers.google.com/maps/documentation/ios-sdk/releases" >Google Maps SDK for iOS 2.0</a> for both Standard and Premium Plan developers.<br />
<br />
We’ve created a <a href="https://developers.google.com/maps/premium/migrate-to-v2" >Premium Plan migration guide</a> that will step you through the process of migrating to the new Google Maps SDK for iOS 2.0. We’ve also documented how to <a href="https://developers.google.com/maps/premium/ios-get-started#install_the_sdk" >extract the frameworks</a> from the CocoaPods so you can manually include the SDKs in your project if you’d prefer that. Your Enterprise Maps key will continue to work, as will your Premium Plan. <br />
<br />
Please note:<br />
The Google Maps SDK for iOS Premium Plan SDK 1.13.2 (current version) will be supported for one year during which time we suggest you upgrade to the new streamlined Google Maps SDK for iOS 2.0.<br />
<br />
Take a look at our <a href="https://developers.google.com/maps/documentation/ios-sdk/releases" >release notes</a> and start using version 2.0 today!<br />
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;">
<img alt="author image" border="0" src="https://lh3.googleusercontent.com/6vY84AOYgFkem78tpMCEVfW5XJJ3jQkP5GC1-q3jfcwXiuLoyhal527iFmM02FL43vk6XV7XIqnU7daYNMxDwOKqr5RZK4bdnYXQlyBrpfr-DwO5u2tqFVBtj6ZgpdEfxV2v7Ocy" style="border-radius: 50%; width: 80px;" /></div>
</td>  <td><i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i></td></tr>
</tbody></table>
]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/google-places-api-for-ios-google-maps-sdk-for-ios-are-now-in-separate-cocoapods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Discover the action around you with the updated Google Maps</title>
		<link>https://googledata.org/google-earth/discover-the-action-around-you-with-the-updated-google-maps/</link>
		<comments>https://googledata.org/google-earth/discover-the-action-around-you-with-the-updated-google-maps/#comments</comments>
		<pubDate>Mon, 25 Jul 2016 19:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=23e0acc9435c62ab7a25452b0927d967</guid>
		<description><![CDATA[The real world is changing every second and Google Maps is changing with it. Most often these changes happen behind the scenes in the form of road closures and new businesses. But today we&#8217;re making a few visual changes and additions to Google Maps on desktop, Android and iOS to help you better explore the world around you.<br /><span> </span> <br /><div></div><div><a href="https://3.bp.blogspot.com/-63ic_AJ_18o/V5Zv_rlsT5I/AAAAAAAAE6Y/IOWgQv5uV2Y_zJcghW8QOVjb_DaKhucjwCLcB/s1600/SS1.png"><img border="0" height="500" src="https://3.bp.blogspot.com/-63ic_AJ_18o/V5Zv_rlsT5I/AAAAAAAAE6Y/IOWgQv5uV2Y_zJcghW8QOVjb_DaKhucjwCLcB/s640/SS1.png" width="640"></a></div><div><br /></div><b>A cleaner look&#160;</b><br />The world is full of information, which means highlighting necessary info on the map without overcrowding it is a balancing act. So as part of this update, we&#8217;ve removed elements that aren&#8217;t absolutely required (like road outlines). The result is a cleaner look that makes it easier to see helpful and actionable information like traffic and transit. And we&#8217;ve improved the typography of street names, points of interest, transit stations, and more to make them more distinguishable from other things on the map, helping you navigate the world with fewer distractions.<br /><br /><div><a href="https://1.bp.blogspot.com/-Q5gDQIlYRwY/V5ZwGsiBt2I/AAAAAAAAE6c/9R05Vq-SX9cgiXMAD-NT-4Npev--vj_rwCLcB/s1600/SS2.png"><img border="0" height="316" src="https://1.bp.blogspot.com/-Q5gDQIlYRwY/V5ZwGsiBt2I/AAAAAAAAE6c/9R05Vq-SX9cgiXMAD-NT-4Npev--vj_rwCLcB/s640/SS2.png" width="640"></a></div><br /><b>Areas of interest</b><br />The cleaner canvas also lets us show local information in entirely new ways.  As you explore the new map, you&#8217;ll notice areas shaded in orange representing &#8220;areas of interest&#8221;&#8212;places where there&#8217;s a lot of activities and things to do. To find an &#8220;area of interest&#8221; just open Google Maps and look around you. When you&#8217;ve found an orange-shaded area, zoom in to see more details about each venue and tap one for more info. Whether you&#8217;re looking for a hotel in a hot spot or just trying to determine which way to go after exiting the subway in a new place, &#8220;areas of interest&#8221; will help you find what you&#8217;re looking for with just a couple swipes and a zoom.<br /><br /><div><br /></div><br />We determine &#8220;areas of interest&#8221; with an algorithmic process that allows us to highlight the areas with the highest concentration of restaurants, bars and shops. In high-density areas like NYC, we use a human touch to make sure we&#8217;re showing the most active areas.<br /><div><a href="https://1.bp.blogspot.com/-OgUGXk1GZrc/V5ZwMMbTWII/AAAAAAAAE6g/fNVS0_i-snQ4FAN2lo1Gt2o-uOEPocoqgCLcB/s1600/SS3.png"><img border="0" height="344" src="https://1.bp.blogspot.com/-OgUGXk1GZrc/V5ZwMMbTWII/AAAAAAAAE6g/fNVS0_i-snQ4FAN2lo1Gt2o-uOEPocoqgCLcB/s640/SS3.png" width="640"></a></div><br /><b>A more subtle and balanced color scheme</b><br />The new Maps has a subtle color scheme to help you easily differentiate between man-made or natural features, and quickly identify places like hospitals, schools or highways. In case you&#8217;re curious, here&#8217;s a key showing what each color on the map represents.<br /><div></div>Google Maps already provides you everything you need to get around the world in one place &#8212;including business information, ratings and reviews, and more than 100+ million distinct places. And with these updates, it's now even easier to navigate to where you want to go.<br /><br /><i>Posted by Zhou Bailiang, UX Designer, Google Maps and Mark Li, Software Engineer, Google Local</i><br /><br /><br /><br /><br /><br /><br />]]></description>
				<content:encoded><![CDATA[The real world is changing every second and Google Maps is changing with it. Most often these changes happen behind the scenes in the form of road closures and new businesses. But today we’re making a few visual changes and additions to Google Maps on desktop, Android and iOS to help you better explore the world around you.<br /><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"> </span> <br /><div class="separator" style="clear: both; text-align: center;"></div><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-63ic_AJ_18o/V5Zv_rlsT5I/AAAAAAAAE6Y/IOWgQv5uV2Y_zJcghW8QOVjb_DaKhucjwCLcB/s1600/SS1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="500" src="https://3.bp.blogspot.com/-63ic_AJ_18o/V5Zv_rlsT5I/AAAAAAAAE6Y/IOWgQv5uV2Y_zJcghW8QOVjb_DaKhucjwCLcB/s640/SS1.png" width="640" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /></div><b>A cleaner look&nbsp;</b><br />The world is full of information, which means highlighting necessary info on the map without overcrowding it is a balancing act. So as part of this update, we’ve removed elements that aren’t absolutely required (like road outlines). The result is a cleaner look that makes it easier to see helpful and actionable information like traffic and transit. And we’ve improved the typography of street names, points of interest, transit stations, and more to make them more distinguishable from other things on the map, helping you navigate the world with fewer distractions.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-Q5gDQIlYRwY/V5ZwGsiBt2I/AAAAAAAAE6c/9R05Vq-SX9cgiXMAD-NT-4Npev--vj_rwCLcB/s1600/SS2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="316" src="https://1.bp.blogspot.com/-Q5gDQIlYRwY/V5ZwGsiBt2I/AAAAAAAAE6c/9R05Vq-SX9cgiXMAD-NT-4Npev--vj_rwCLcB/s640/SS2.png" width="640" /></a></div><br /><b>Areas of interest</b><br />The cleaner canvas also lets us show local information in entirely new ways.  As you explore the new map, you’ll notice areas shaded in orange representing “areas of interest”—places where there’s a lot of activities and things to do. To find an “area of interest” just open Google Maps and look around you. When you’ve found an orange-shaded area, zoom in to see more details about each venue and tap one for more info. Whether you’re looking for a hotel in a hot spot or just trying to determine which way to go after exiting the subway in a new place, “areas of interest” will help you find what you’re looking for with just a couple swipes and a zoom.<br /><br /><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/4vimAfuKGJ0" width="420"></iframe><br /></div><br />We determine “areas of interest” with an algorithmic process that allows us to highlight the areas with the highest concentration of restaurants, bars and shops. In high-density areas like NYC, we use a human touch to make sure we’re showing the most active areas.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-OgUGXk1GZrc/V5ZwMMbTWII/AAAAAAAAE6g/fNVS0_i-snQ4FAN2lo1Gt2o-uOEPocoqgCLcB/s1600/SS3.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="344" src="https://1.bp.blogspot.com/-OgUGXk1GZrc/V5ZwMMbTWII/AAAAAAAAE6g/fNVS0_i-snQ4FAN2lo1Gt2o-uOEPocoqgCLcB/s640/SS3.png" width="640" /></a></div><br /><b>A more subtle and balanced color scheme</b><br />The new Maps has a subtle color scheme to help you easily differentiate between man-made or natural features, and quickly identify places like hospitals, schools or highways. In case you’re curious, here’s a key showing what each color on the map represents.<br /><div class="separator" style="clear: both; text-align: center;"></div>Google Maps already provides you everything you need to get around the world in one place —including business information, ratings and reviews, and more than 100+ million distinct places. And with these updates, it's now even easier to navigate to where you want to go.<br /><br /><i>Posted by Zhou Bailiang, UX Designer, Google Maps and Mark Li, Software Engineer, Google Local</i><br /><br /><br /><br /><br /><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/discover-the-action-around-you-with-the-updated-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>I/O session: Location and Proximity Superpowers: Eddystone + Google Beacon Platform</title>
		<link>https://googledata.org/google-maps/io-session-location-and-proximity-superpowers-eddystone-google-beacon-platform/</link>
		<comments>https://googledata.org/google-maps/io-session-location-and-proximity-superpowers-eddystone-google-beacon-platform/#comments</comments>
		<pubDate>Mon, 25 Jul 2016 15:05:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=1a69413f640adbd367f8eb6aa9b762c2</guid>
		<description><![CDATA[Bluetooth beacons mark important places and objects in a way that your phone understands. Last year, we introduced the Google beacon platform including Eddystone, Nearby Messages and the Proximity Beacon API that helps developers build beacon-powered proximity and location features in their apps.<br /><br />
Since then, we&#8217;ve learned that when deployment of physical infrastructure is involved, it&#8217;s important to get the best possible value from your investment. That&#8217;s why the Google beacon platform works differently from the traditional approach.<br /><br />
We don&#8217;t think of beacons as only pointing to a single feature in an app, or a single web resource. Instead, the Google beacon platform enables extensible location infrastructure that you can manage through your Google Developer project and reuse many times. Each beacon can take part in several different interactions: through your app, through other developers&#8217; apps, through Google services, and the web. All of this functionality works transparently across Eddystone-UID and <a href="https://developers.google.com/beacons/eddystone-eid" target="_blank">Eddystone-EID</a> -- because using our APIs means you never have to think about monitoring for the individual bytes that a beacon is broadcasting.<br /><br />
For example, we&#8217;re excited that the City of Amsterdam has adopted Eddystone and the newly released <a href="https://developers.google.com/beacons/proximity/attachments#attachment_visibility" target="_blank">publicly visible namespace</a> feature for the foundation of their <a href="http://open.datapunt.amsterdam.nl/beacons/Beacon%20attachments%20for%20Amsterdam%20Open%20Beacon%20Network.pdf" target="_blank">open beacon network</a>. Or, through <a href="https://developers.google.com/nearby/notifications/overview" target="_blank">Nearby Notifications</a>, Eddystone and the Google beacon platform enable explorers of the BFG Dream Jar Trail to discover cloud-updateable content in <a href="https://www.youtube.com/watch?v=EMun6_BDhHk" target="_blank">Dream Jars across London</a>.<br /><br />
To make getting started as easy as possible we&#8217;ve provided a set of tools to help developers, including links to <a href="https://developers.google.com/beacons/eddystone#beacon_manufacturers" target="_blank">beacon manufacturers</a> that can help you with Eddystone, Beacon Tools (for <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.location.beacon.beacontools&#38;hl=en_GB" target="_blank">Android</a> and <a href="https://itunes.apple.com/us/app/beacon-tools/id1094371356?mt=8" target="_blank">iOS</a>), the <a href="https://developers.google.com/beacons/dashboard/" target="_blank">Beacon Dashboard</a>, a <a href="https://codelabs.developers.google.com/codelabs/hello-beacons/index.html#0" target="_blank">codelab</a> and of course our <a href="https://developers.google.com/beacons/" target="_blank">documentation</a>. And, if you were not able to attend Google I/O in person this year, you can watch my session, Location and Proximity Superpowers: Eddystone + Google Beacon Platform:<br /><div>
</div>
We can&#8217;t wait to see what you build!<br /><table><tbody><tr><td><br /><div>
<img alt="author image" border="0" src="https://lh3.googleusercontent.com/K6x9FKjtgDMai_4WzmO2jBqDvR_LzjmnTV20HlLNzfSbbofkqLPl1hu2Z_hZtfPnH09z9TvZqKSJVUuP7pzyJLJUfOrAUsSUo7POl9YPrYMXVigY5q4YFZGBWGOkja2vY5aKhOKj"></div>
</td>  <td>About Peter: <em>I am a Product Manager for the Google beacon platform, including the open beacon format Eddystone, and Google's cloud services that integrate beacon technology with first and third party apps. When I&#8217;m not working at Google I enjoy taking my dog, Oscar, for walks on Hampstead Heath.</em></td> </tr></tbody></table>]]></description>
				<content:encoded><![CDATA[Bluetooth beacons mark important places and objects in a way that your phone understands. Last year, we introduced the Google beacon platform including Eddystone, Nearby Messages and the Proximity Beacon API that helps developers build beacon-powered proximity and location features in their apps.<br />
<br />
Since then, we’ve learned that when deployment of physical infrastructure is involved, it’s important to get the best possible value from your investment. That’s why the Google beacon platform works differently from the traditional approach.<br />
<br />
We don’t think of beacons as only pointing to a single feature in an app, or a single web resource. Instead, the Google beacon platform enables extensible location infrastructure that you can manage through your Google Developer project and reuse many times. Each beacon can take part in several different interactions: through your app, through other developers’ apps, through Google services, and the web. All of this functionality works transparently across Eddystone-UID and <a href="https://developers.google.com/beacons/eddystone-eid" >Eddystone-EID</a> -- because using our APIs means you never have to think about monitoring for the individual bytes that a beacon is broadcasting.<br />
<br />
For example, we’re excited that the City of Amsterdam has adopted Eddystone and the newly released <a href="https://developers.google.com/beacons/proximity/attachments#attachment_visibility" >publicly visible namespace</a> feature for the foundation of their <a href="http://open.datapunt.amsterdam.nl/beacons/Beacon%20attachments%20for%20Amsterdam%20Open%20Beacon%20Network.pdf" >open beacon network</a>. Or, through <a href="https://developers.google.com/nearby/notifications/overview" >Nearby Notifications</a>, Eddystone and the Google beacon platform enable explorers of the BFG Dream Jar Trail to discover cloud-updateable content in <a href="https://www.youtube.com/watch?v=EMun6_BDhHk" >Dream Jars across London</a>.<br />
<br />
To make getting started as easy as possible we’ve provided a set of tools to help developers, including links to <a href="https://developers.google.com/beacons/eddystone#beacon_manufacturers" >beacon manufacturers</a> that can help you with Eddystone, Beacon Tools (for <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.location.beacon.beacontools&amp;hl=en_GB" >Android</a> and <a href="https://itunes.apple.com/us/app/beacon-tools/id1094371356?mt=8" >iOS</a>), the <a href="https://developers.google.com/beacons/dashboard/" >Beacon Dashboard</a>, a <a href="https://codelabs.developers.google.com/codelabs/hello-beacons/index.html#0" >codelab</a> and of course our <a href="https://developers.google.com/beacons/" >documentation</a>. And, if you were not able to attend Google I/O in person this year, you can watch my session, Location and Proximity Superpowers: Eddystone + Google Beacon Platform:<br />
<div style="text-align: center;">
<iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/3nYyApSiSLQ" width="560"></iframe></div>
We can’t wait to see what you build!<br />
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;">
<img alt="author image" border="0" src="https://lh3.googleusercontent.com/K6x9FKjtgDMai_4WzmO2jBqDvR_LzjmnTV20HlLNzfSbbofkqLPl1hu2Z_hZtfPnH09z9TvZqKSJVUuP7pzyJLJUfOrAUsSUo7POl9YPrYMXVigY5q4YFZGBWGOkja2vY5aKhOKj" style="border-radius: 50%; width: 80px;" /></div>
</td>  <td>About Peter: <em>I am a Product Manager for the Google beacon platform, including the open beacon format Eddystone, and Google's cloud services that integrate beacon technology with first and third party apps. When I’m not working at Google I enjoy taking my dog, Oscar, for walks on Hampstead Heath.</em></td> </tr>
</tbody></table>
]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/io-session-location-and-proximity-superpowers-eddystone-google-beacon-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>More ways to share your street smarts in Google Maps</title>
		<link>https://googledata.org/google-earth/more-ways-to-share-your-street-smarts-in-google-maps/</link>
		<comments>https://googledata.org/google-earth/more-ways-to-share-your-street-smarts-in-google-maps/#comments</comments>
		<pubDate>Thu, 21 Jul 2016 13:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=9ed62cdd957c6de4ed43ca12f411a7e7</guid>
		<description><![CDATA[Each day, we make million of updates to Google Maps throughout the world. But it&#8217;s still not enough to ensure that every single restaurant, shop or landmark worldwide has the most accurate information possible. That&#8217;s why we&#8217;ve been rolling out new, easy ways for you to help keep the neighborhoods and places where you hang out up-to-date. <br /><br /><b>Easily add places or suggest edits</b><br />First, we&#8217;ve expanded the ability to add missing places and edit existing business or landmark information worldwide on both the Google Maps app (Android, iOS) and through Google Search. This lets people contribute new and updated information to Google Maps from more places&#8212;whether they&#8217;re searching for a new restaurant on Google.com or looking for a nearby convenience store while on the go.<br /><div><a href="https://3.bp.blogspot.com/-sbtPm6bUtJM/V5BahcAAz9I/AAAAAAAAE5E/4ZnTjrcLM-0IsyeEHZMWULErR200FvenQCLcB/s1600/First.png"><img border="0" height="400" src="https://3.bp.blogspot.com/-sbtPm6bUtJM/V5BahcAAz9I/AAAAAAAAE5E/4ZnTjrcLM-0IsyeEHZMWULErR200FvenQCLcB/s400/First.png" width="225"></a><a href="https://3.bp.blogspot.com/--yepph7HoxQ/V5BamcbZ6oI/AAAAAAAAE5I/RInZqv_6ylMa0wVl6v4pGglHolgTbx32QCLcB/s1600/Second.png"><img border="0" height="400" src="https://3.bp.blogspot.com/--yepph7HoxQ/V5BamcbZ6oI/AAAAAAAAE5I/RInZqv_6ylMa0wVl6v4pGglHolgTbx32QCLcB/s400/Second.png" width="222"></a></div><div><br /></div><div><b>Share more details about a place</b></div>There&#8217;s more to a place than its business hours or address&#8212;you might want to know if a place has a romantic vibe, serves vegetarian food or offers outdoor seating. Now on Google Maps for Android and when searching on your mobile phone, you can contribute what you know about a place so that others can benefit from the info as well. Knowing these types of details helps us build a deeper understanding of a place so we can better help users find the places most relevant to them.<br /><div><a href="https://4.bp.blogspot.com/-Ld4PA6jSj8E/V5Ba8kF35NI/AAAAAAAAE5M/thWuH5lZORApNREdLfH2Q2NuAw_nYWdZwCLcB/s1600/FinalGIF.gif"><img border="0" height="400" src="https://4.bp.blogspot.com/-Ld4PA6jSj8E/V5Ba8kF35NI/AAAAAAAAE5M/thWuH5lZORApNREdLfH2Q2NuAw_nYWdZwCLcB/s400/FinalGIF.gif" width="246"></a></div><div><b>Verify suggested edits from others</b></div>We&#8217;ve also introduced a new way for users to help approve edits suggested by others, ultimately reducing the amount of time it takes for edits to appear on the map. For places that have pending suggestions, you&#8217;ll see a notification stating that &#8220;Someone suggested new info.&#8221; If you click or tap that notification, you&#8217;ll have the option to verify whether the suggestion is accurate. Once enough votes are received to be confident that the suggestion is accurate, it&#8217;s published to the map. This feature is available to Android users on the Google Maps app and both Android and iOS users on mobile Google Search.<br /><br /><a href="https://1.bp.blogspot.com/-S-lX82KkcAk/V5BbgPm3cWI/AAAAAAAAE5c/EasNlxQxqOg35rv_tFZgc1czr1pg4zfwwCLcB/s1600/Screenshot_20160720-160900%2B%25281%2529.png"><img border="0" height="320" src="https://1.bp.blogspot.com/-S-lX82KkcAk/V5BbgPm3cWI/AAAAAAAAE5c/EasNlxQxqOg35rv_tFZgc1czr1pg4zfwwCLcB/s320/Screenshot_20160720-160900%2B%25281%2529.png" width="180"></a><a href="https://1.bp.blogspot.com/-m9f9HQt0ukM/V5BbfqPEOaI/AAAAAAAAE5U/bsAq-ToUUqQVSw6fklubQaRNV0m5o9F9ACLcB/s1600/Screenshot_20160720-160913%2B%25281%2529.png"><img border="0" height="320" src="https://1.bp.blogspot.com/-m9f9HQt0ukM/V5BbfqPEOaI/AAAAAAAAE5U/bsAq-ToUUqQVSw6fklubQaRNV0m5o9F9ACLcB/s320/Screenshot_20160720-160913%2B%25281%2529.png" width="180"></a><a href="https://2.bp.blogspot.com/-tMuEj9FDenE/V5Bbf-ZGgAI/AAAAAAAAE5Y/hSJqwd4kg80INVD2c7g9yRGjhtxuv1yKgCLcB/s1600/Screenshot_20160720-160957%2B%25281%2529.png"><img border="0" height="320" src="https://2.bp.blogspot.com/-tMuEj9FDenE/V5Bbf-ZGgAI/AAAAAAAAE5Y/hSJqwd4kg80INVD2c7g9yRGjhtxuv1yKgCLcB/s320/Screenshot_20160720-160957%2B%25281%2529.png" width="180"></a><br />Together, these new changes let people who are familiar with their neighborhoods help provide accurate, reliable information about their favorite haunts and hidden gems. So now when searching for useful information about a place on Google Maps or Search, you&#8217;ll get an even better representation of the ever-changing world around us.<br /><br /><i>Posted by Nirav Mehta, Product Manager, Google Maps and Local Search </i><br /><br /><br /><br /><br />]]></description>
				<content:encoded><![CDATA[Each day, we make million of updates to Google Maps throughout the world. But it’s still not enough to ensure that every single restaurant, shop or landmark worldwide has the most accurate information possible. That’s why we’ve been rolling out new, easy ways for you to help keep the neighborhoods and places where you hang out up-to-date. <br /><br /><b>Easily add places or suggest edits</b><br />First, we’ve expanded the ability to add missing places and edit existing business or landmark information worldwide on both the Google Maps app (Android, iOS) and through Google Search. This lets people contribute new and updated information to Google Maps from more places—whether they’re searching for a new restaurant on Google.com or looking for a nearby convenience store while on the go.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-sbtPm6bUtJM/V5BahcAAz9I/AAAAAAAAE5E/4ZnTjrcLM-0IsyeEHZMWULErR200FvenQCLcB/s1600/First.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="https://3.bp.blogspot.com/-sbtPm6bUtJM/V5BahcAAz9I/AAAAAAAAE5E/4ZnTjrcLM-0IsyeEHZMWULErR200FvenQCLcB/s400/First.png" width="225" /></a><a href="https://3.bp.blogspot.com/--yepph7HoxQ/V5BamcbZ6oI/AAAAAAAAE5I/RInZqv_6ylMa0wVl6v4pGglHolgTbx32QCLcB/s1600/Second.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="https://3.bp.blogspot.com/--yepph7HoxQ/V5BamcbZ6oI/AAAAAAAAE5I/RInZqv_6ylMa0wVl6v4pGglHolgTbx32QCLcB/s400/Second.png" width="222" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: left;"><b>Share more details about a place</b></div>There’s more to a place than its business hours or address—you might want to know if a place has a romantic vibe, serves vegetarian food or offers outdoor seating. Now on Google Maps for Android and when searching on your mobile phone, you can contribute what you know about a place so that others can benefit from the info as well. Knowing these types of details helps us build a deeper understanding of a place so we can better help users find the places most relevant to them.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-Ld4PA6jSj8E/V5Ba8kF35NI/AAAAAAAAE5M/thWuH5lZORApNREdLfH2Q2NuAw_nYWdZwCLcB/s1600/FinalGIF.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="https://4.bp.blogspot.com/-Ld4PA6jSj8E/V5Ba8kF35NI/AAAAAAAAE5M/thWuH5lZORApNREdLfH2Q2NuAw_nYWdZwCLcB/s400/FinalGIF.gif" width="246" /></a></div><div class="separator" style="clear: both; text-align: left;"><b>Verify suggested edits from others</b></div>We’ve also introduced a new way for users to help approve edits suggested by others, ultimately reducing the amount of time it takes for edits to appear on the map. For places that have pending suggestions, you’ll see a notification stating that “Someone suggested new info.” If you click or tap that notification, you’ll have the option to verify whether the suggestion is accurate. Once enough votes are received to be confident that the suggestion is accurate, it’s published to the map. This feature is available to Android users on the Google Maps app and both Android and iOS users on mobile Google Search.<br /><br /><a href="https://1.bp.blogspot.com/-S-lX82KkcAk/V5BbgPm3cWI/AAAAAAAAE5c/EasNlxQxqOg35rv_tFZgc1czr1pg4zfwwCLcB/s1600/Screenshot_20160720-160900%2B%25281%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em; text-align: center;"><img border="0" height="320" src="https://1.bp.blogspot.com/-S-lX82KkcAk/V5BbgPm3cWI/AAAAAAAAE5c/EasNlxQxqOg35rv_tFZgc1czr1pg4zfwwCLcB/s320/Screenshot_20160720-160900%2B%25281%2529.png" width="180" /></a><a href="https://1.bp.blogspot.com/-m9f9HQt0ukM/V5BbfqPEOaI/AAAAAAAAE5U/bsAq-ToUUqQVSw6fklubQaRNV0m5o9F9ACLcB/s1600/Screenshot_20160720-160913%2B%25281%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em; text-align: center;"><img border="0" height="320" src="https://1.bp.blogspot.com/-m9f9HQt0ukM/V5BbfqPEOaI/AAAAAAAAE5U/bsAq-ToUUqQVSw6fklubQaRNV0m5o9F9ACLcB/s320/Screenshot_20160720-160913%2B%25281%2529.png" width="180" /></a><a href="https://2.bp.blogspot.com/-tMuEj9FDenE/V5Bbf-ZGgAI/AAAAAAAAE5Y/hSJqwd4kg80INVD2c7g9yRGjhtxuv1yKgCLcB/s1600/Screenshot_20160720-160957%2B%25281%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em; text-align: center;"><img border="0" height="320" src="https://2.bp.blogspot.com/-tMuEj9FDenE/V5Bbf-ZGgAI/AAAAAAAAE5Y/hSJqwd4kg80INVD2c7g9yRGjhtxuv1yKgCLcB/s320/Screenshot_20160720-160957%2B%25281%2529.png" width="180" /></a><br />Together, these new changes let people who are familiar with their neighborhoods help provide accurate, reliable information about their favorite haunts and hidden gems. So now when searching for useful information about a place on Google Maps or Search, you’ll get an even better representation of the ever-changing world around us.<br /><br /><i>Posted by Nirav Mehta, Product Manager, Google Maps and Local Search </i><br /><br /><br /><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/more-ways-to-share-your-street-smarts-in-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Announcing marker clustering in the Google Maps SDK for iOS Utility Library</title>
		<link>https://googledata.org/google-maps/announcing-marker-clustering-in-the-google-maps-sdk-for-ios-utility-library/</link>
		<comments>https://googledata.org/google-maps/announcing-marker-clustering-in-the-google-maps-sdk-for-ios-utility-library/#comments</comments>
		<pubDate>Tue, 19 Jul 2016 01:02:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=d56a751bec20d18ab45db2975aca83d0</guid>
		<description><![CDATA[Today we&#8217;ve added <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/marker-clustering?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=iOSmarkers" target="_blank">marker clustering</a> to the <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/setup?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=iOSmarkers" target="_blank">Google Maps SDK for iOS Utility Library</a>! This much-requested feature is now available for <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/setup?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=iOSmarkers" target="_blank">iOS</a> in addition to <a href="https://developers.google.com/maps/documentation/android-api/utility/marker-clustering?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=iOSmarkers" target="_blank">Android</a> and <a href="https://developers.google.com/maps/articles/toomanymarkers?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=iOSmarkers" target="_blank">JavaScript</a>.<br /><br />
Do you ever feel that your map just has too many markers on it, making it feel cluttered and hard to comprehend? Or, perhaps you want to show where the popular restaurants are in your city, but you still want your map to look clean?<br /><br />
Marker clustering supports you in doing this. As the zoom levels of the map change, you can aggregate markers, indicating clearly to your users exactly where those popular restaurants are located. As your user zooms in, the markers progressively split out until all of the individual markers are displayed.<br /><div>
<a href="https://1.bp.blogspot.com/-0_dZoHUYBmc/V41ehl-CRfI/AAAAAAAAAhg/k_oAVf5FVbweBLA2OmcsCXk7NDrsQhZwACLcB/s1600/iphone_clustering_transparency.gif"><img border="0" height="314" src="https://1.bp.blogspot.com/-0_dZoHUYBmc/V41ehl-CRfI/AAAAAAAAAhg/k_oAVf5FVbweBLA2OmcsCXk7NDrsQhZwACLcB/s640/iphone_clustering_transparency.gif" width="640"></a></div>
Using the new marker clustering feature in the Google Maps SDK for iOS Utility Library is an easy 4 step process:<br /><ul><li>Add &#8216;Google-Maps-iOS-Utils&#8217; to your Podfile</li>
<li>Instantiate the <span>GMUClusterManager</span></li>
<li>Implement the <span>GMUClusterItem</span> protocol for your marker objects</li>
<li>Add the marker objects to the cluster manager</li>
</ul>
We provide the default algorithm, renderer and icon generator to support you in doing this. In addition, you can also fully customize each of these by extending the default implementations, or by providing your own implementation of these protocols: <span>GMUClusterAlgorithm</span>, <span>GMUClusterRenderer</span>, <span>GMUClusterIconGenerator</span>.<br /><br />
Take a look at the <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/marker-clustering?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=iOSmarkers" target="_blank">documentation</a> and <a href="https://github.com/googlemaps/google-maps-ios-utils/tree/1.0.0/samples" target="_blank">demo samples</a>, and start using marker clustering in the <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/setup?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=iOSmarkers" target="_blank">Google Maps SDK for iOS Utility Library</a> today!<br /><table><tbody><tr><td><br /><div>
<img alt="author image" border="0" src="https://lh3.googleusercontent.com/6vY84AOYgFkem78tpMCEVfW5XJJ3jQkP5GC1-q3jfcwXiuLoyhal527iFmM02FL43vk6XV7XIqnU7daYNMxDwOKqr5RZK4bdnYXQlyBrpfr-DwO5u2tqFVBtj6ZgpdEfxV2v7Ocy"></div>
</td> 
<td><i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i></td> </tr></tbody></table>]]></description>
				<content:encoded><![CDATA[Today we’ve added <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/marker-clustering?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=iOSmarkers" >marker clustering</a> to the <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/setup?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=iOSmarkers" >Google Maps SDK for iOS Utility Library</a>! This much-requested feature is now available for <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/setup?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=iOSmarkers" >iOS</a> in addition to <a href="https://developers.google.com/maps/documentation/android-api/utility/marker-clustering?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=iOSmarkers" >Android</a> and <a href="https://developers.google.com/maps/articles/toomanymarkers?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=iOSmarkers" >JavaScript</a>.<br />
<br />
Do you ever feel that your map just has too many markers on it, making it feel cluttered and hard to comprehend? Or, perhaps you want to show where the popular restaurants are in your city, but you still want your map to look clean?<br />
<br />
Marker clustering supports you in doing this. As the zoom levels of the map change, you can aggregate markers, indicating clearly to your users exactly where those popular restaurants are located. As your user zooms in, the markers progressively split out until all of the individual markers are displayed.<br />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-0_dZoHUYBmc/V41ehl-CRfI/AAAAAAAAAhg/k_oAVf5FVbweBLA2OmcsCXk7NDrsQhZwACLcB/s1600/iphone_clustering_transparency.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="314" src="https://1.bp.blogspot.com/-0_dZoHUYBmc/V41ehl-CRfI/AAAAAAAAAhg/k_oAVf5FVbweBLA2OmcsCXk7NDrsQhZwACLcB/s640/iphone_clustering_transparency.gif" width="640" /></a></div>
Using the new marker clustering feature in the Google Maps SDK for iOS Utility Library is an easy 4 step process:<br />
<ul>
<li>Add ‘Google-Maps-iOS-Utils’ to your Podfile</li>
<li>Instantiate the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">GMUClusterManager</span></li>
<li>Implement the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">GMUClusterItem</span> protocol for your marker objects</li>
<li>Add the marker objects to the cluster manager</li>
</ul>
We provide the default algorithm, renderer and icon generator to support you in doing this. In addition, you can also fully customize each of these by extending the default implementations, or by providing your own implementation of these protocols: <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">GMUClusterAlgorithm</span>, <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">GMUClusterRenderer</span>, <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">GMUClusterIconGenerator</span>.<br />
<br />
Take a look at the <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/marker-clustering?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=iOSmarkers" >documentation</a> and <a href="https://github.com/googlemaps/google-maps-ios-utils/tree/1.0.0/samples" >demo samples</a>, and start using marker clustering in the <a href="https://developers.google.com/maps/documentation/ios-sdk/utility/setup?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=iOSmarkers" >Google Maps SDK for iOS Utility Library</a> today!<br />
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;">
<img alt="author image" border="0" src="https://lh3.googleusercontent.com/6vY84AOYgFkem78tpMCEVfW5XJJ3jQkP5GC1-q3jfcwXiuLoyhal527iFmM02FL43vk6XV7XIqnU7daYNMxDwOKqr5RZK4bdnYXQlyBrpfr-DwO5u2tqFVBtj6ZgpdEfxV2v7Ocy" style="border-radius: 50%; width: 80px;" /></div>
</td> 
<td><i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i></td> </tr>
</tbody></table>
]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/announcing-marker-clustering-in-the-google-maps-sdk-for-ios-utility-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>I/O session live: Building geo services that scale</title>
		<link>https://googledata.org/google-maps/io-session-live-building-geo-services-that-scale/</link>
		<comments>https://googledata.org/google-maps/io-session-live-building-geo-services-that-scale/#comments</comments>
		<pubDate>Thu, 14 Jul 2016 18:57:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=862539a9e3fb8c95e57e91824e004f32</guid>
		<description><![CDATA[<div>
<i>Posted by Laurence Moroney, Developer Advocate at Google</i></div>
<br />
While at Google I/O, l had the opportunity to present the session &#8216;Building geo services that scale&#8217;.  I&#8217;m pleased to share it more broadly for those of you who were not able to be there in person:<br /><div>
</div>
<i>Building geo services that scale</i><br />
Not all map and geo applications run entirely on your mobile device. Perhaps you want to protect your keys or other API access data from reverse engineering by putting them in the cloud, or you have custom business logic that you run on your server that you don't want to distribute via mobile. To protect your keys and API access data you'll need to operate some kind of service. In this session you'll learn how to build that service on the Google Cloud Platform and consume it in a mobile application that uses the Google Maps APIs.<br /><div>
<span><img alt="DSC_3206 (1).jpg" height="426" src="https://lh4.googleusercontent.com/a9TTh5Wvr9HV1kvx1xzWfpIq-apFRTPapVDlraSaIbHp_cSbGuoe2uyAxzMzUrXcScY2PpZeCAGoXaOPZLu7GIqKDiYvsCt8jUW4iqWxgpdSGfKTSgsuFt4B3oR3v1p2wgzWuNnh" width="640"></span></div>
<table><tbody><tr><td><br /><div>
</div>
<img alt="author image" border="0" src="https://4.bp.blogspot.com/-Civ0vs_fVv4/V4ASp64f_aI/AAAAAAAAAgY/IE-dp1TlEPIqsaGC8RxYpvEGHAGe7gWSACLcB/s1600/laurence.jpg"></td>  <td>About Laurence: <em>I am a Developer Advocate at Google, working on mobile services, specializing in cross-platform developer technologies. As the host of 'Coffee with a Googler' on the Google Developers channel I&#8217;m able to meet with some of those most creative and inspiring developers at Google and learn about the projects they&#8217;re leading. When I&#8217;m not Googling, I&#8217;m involved in many things, including working on the revival comics for the Stargate TV shows, and enjoying the geek cred that this brings.</em><br /><div>
</div>
</td> </tr></tbody></table><br /><br />]]></description>
				<content:encoded><![CDATA[<div class="separator" style="clear: both; text-align: left;">
<i>Posted by Laurence Moroney, Developer Advocate at Google</i></div>
<br />
While at Google I/O, l had the opportunity to present the session ‘Building geo services that scale’.  I’m pleased to share it more broadly for those of you who were not able to be there in person:<br />
<div class="separator" style="clear: both; text-align: center;">
<iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/QqOYZ5Yu47Y" width="560"></iframe></div>
<i>Building geo services that scale</i><br />
Not all map and geo applications run entirely on your mobile device. Perhaps you want to protect your keys or other API access data from reverse engineering by putting them in the cloud, or you have custom business logic that you run on your server that you don't want to distribute via mobile. To protect your keys and API access data you'll need to operate some kind of service. In this session you'll learn how to build that service on the Google Cloud Platform and consume it in a mobile application that uses the Google Maps APIs.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="background-color: white; color: #212121; font-family: &quot;arial&quot;; font-size: 13.3333px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="DSC_3206 (1).jpg" height="426" src="https://lh4.googleusercontent.com/a9TTh5Wvr9HV1kvx1xzWfpIq-apFRTPapVDlraSaIbHp_cSbGuoe2uyAxzMzUrXcScY2PpZeCAGoXaOPZLu7GIqKDiYvsCt8jUW4iqWxgpdSGfKTSgsuFt4B3oR3v1p2wgzWuNnh" style="border: none; transform: rotate(0rad);" width="640" /></span></div>
<table><tbody>
<tr> <td style="width: 80px;"><br />
<div class="separator" style="clear: both; text-align: center;">
</div>
<img alt="author image" border="0" src="https://4.bp.blogspot.com/-Civ0vs_fVv4/V4ASp64f_aI/AAAAAAAAAgY/IE-dp1TlEPIqsaGC8RxYpvEGHAGe7gWSACLcB/s1600/laurence.jpg" style="border-radius: 50%; width: 80px;" /></td>  <td>About Laurence: <em>I am a Developer Advocate at Google, working on mobile services, specializing in cross-platform developer technologies. As the host of 'Coffee with a Googler' on the Google Developers channel I’m able to meet with some of those most creative and inspiring developers at Google and learn about the projects they’re leading. When I’m not Googling, I’m involved in many things, including working on the revival comics for the Stargate TV shows, and enjoying the geek cred that this brings.</em><br />
<div class="separator" style="clear: both; text-align: center;">
</div>
</td> </tr>
</tbody></table>
<br />
<br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/io-session-live-building-geo-services-that-scale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Behind the Australian Elections Map: Mapping democracy in real-time</title>
		<link>https://googledata.org/google-maps/behind-the-australian-elections-map-mapping-democracy-in-real-time/</link>
		<comments>https://googledata.org/google-maps/behind-the-australian-elections-map-mapping-democracy-in-real-time/#comments</comments>
		<pubDate>Fri, 01 Jul 2016 23:53:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=37f65dc9cfb45a49282062813949e3e4</guid>
		<description><![CDATA[It's elections time in Australia! With 94% of eligible Australians registered to vote, there will be close to 15 million participants this year.<br /><br />
Googlers in the Sydney office were recently chatting about the upcoming election and realized we all had similar questions: what were the results last cycle, where are the closest polling stations, and where do we look for real-time results on election day? Friends and family were asking the same questions, so we decided to build a solution using <a href="https://developers.google.com/maps/documentation/javascript/">Google Maps APIs</a>,  <a href="https://firebase.google.com/">Firebase</a>,  <a href="https://cloud.google.com/appengine/">Google App Engine</a>,  <a href="https://cloud.google.com/compute/">Google Cloud Compute</a>,  <a href="http://angular.io/">Angular 2</a>,  <a href="https://translate.google.com/toolkit/list#translations/active">the Google Translation Toolkit</a> and Go.<br /><br /><br /><br />
The aim of <a href="https://election.google.com.au/" target="_blank">the election map</a> was to provide all the information that Australians would need to participate in the voting process. We wanted to cover pre-, mid- and post-election needs, including:<br /><br /><ol><li>A polling place locator with searchable addresses, suburbs, and electorates</li>
<li>Directions and navigation to the polling places, accessible via the election map</li>
<li>Real-time election results once polling has closed and counting has started</li>
<li>The ability to share and embed maps.</li>
</ol><br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://2.bp.blogspot.com/-PV-2nLyjsVc/V3b8VG9AFCI/AAAAAAAAAfc/Z_fcufbQcZMgw7jjDS01XqmAZ75Vvke8ACKgB/s1600/Screen%2BShot%2B2016-07-01%2Bat%2B4.25.04%2BPM.png"><img border="0" src="https://2.bp.blogspot.com/-PV-2nLyjsVc/V3b8VG9AFCI/AAAAAAAAAfc/Z_fcufbQcZMgw7jjDS01XqmAZ75Vvke8ACKgB/s640/Screen%2BShot%2B2016-07-01%2Bat%2B4.25.04%2BPM.png"></a></td></tr><tr><td>UX mockup: map and fake election results using testing data</td></tr></tbody></table><br /><strong>The pre-election map</strong> displays static electorate data, polling booths and ballot papers. It also indicates who won the electorate in the last 2013 election. To do this, we sourced 2013 election data from the Australian Electoral Commission (AEC) and stored it in a Go application intended for Google App Engine so that it could be served to the website frontend. The AEC provided us with data about electorate boundaries and polling place locations.<br /><br />
The website frontend was built using Angular 2 and we've used several open source projects, including <a href="http://www.gdal.org/">GDAL</a>, <a href="https://github.com/mbloch/mapshaper">mapshaper</a> and a <a href="https://github.com/smira/go-point-clustering">point clustering library</a>. These libraries allowed us to send only the required details for a user's viewport, while keeping data usage reasonably low and reducing visual noise.<br /><br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://1.bp.blogspot.com/-GnV9ivQTO4Y/V3b92Xl9Y0I/AAAAAAAAAfo/WunDpuoNwxsAPXEakq5Ip4q3j3OYQ3pWACLcB/s1600/Screen%2BShot%2B2016-07-01%2Bat%2B4.33.21%2BPM.png"><img border="0" src="https://1.bp.blogspot.com/-GnV9ivQTO4Y/V3b92Xl9Y0I/AAAAAAAAAfo/WunDpuoNwxsAPXEakq5Ip4q3j3OYQ3pWACLcB/s640/Screen%2BShot%2B2016-07-01%2Bat%2B4.33.21%2BPM.png"></a></td></tr><tr><td>Polling location information with address and directions intent</td></tr></tbody></table><strong>Day-of website visitors</strong> will have the ability to search for polling stations and learn about what services are available at each location (accessibility, <a href="https://en.wikipedia.org/wiki/Sausage_sizzle">sausage sizzle</a> and/or cake stand). We sourced the sausage sizzle and cake stand data from <a href="http://democracysausage.org/">Democracy Sausage</a> and <a href="http://www.electionsausagesizzle.com.au/">Snagvotes</a>. We used the polling place ID to match these to the AEC polling place identifiers. We built a small Google Compute Engine app which sources the data from our sausage sizzle data sources and broadcasts it out to our live web application using <a href="https://firebase.google.com/docs/database/">Firebase Realtime Database</a>.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://2.bp.blogspot.com/-1F7tklP3tTI/V3b9enBijjI/AAAAAAAAAfk/NXglLcD6Tb4kNRpUCG95orGqV7EEgbYRwCLcB/s1600/Screen%2BShot%2B2016-07-01%2Bat%2B4.30.58%2BPM.png"><img border="0" src="https://2.bp.blogspot.com/-1F7tklP3tTI/V3b9enBijjI/AAAAAAAAAfk/NXglLcD6Tb4kNRpUCG95orGqV7EEgbYRwCLcB/s640/Screen%2BShot%2B2016-07-01%2Bat%2B4.30.58%2BPM.png"></a></td></tr><tr><td>Autocomplete searches for polling locations</td></tr></tbody></table>
To enable the search functionality, we use two different services in parallel. We first attempt to match the search query against the electorate list on the client. We also use the <a href="https://developers.google.com/maps/documentation/javascript/places">Google Maps Javascript API Places Library</a> with <a href="https://developers.google.com/places/web-service/autocomplete">Autocomplete</a> to provide suggestions of what users might be searching for, including suburbs, places of interest and addresses. This gives our users the ability to select recommendations instead of having to type full queries.<br /><br />
Voters also need to plan their trip to the polling booths. We relied on Google Maps' existing real-time traffic information and turn-by-turn directions to provide directions functionality.<br /><br /><strong>After 6pm on election night</strong> and when votes begin to be counted, we will switch the site to show real time election results. To do this, again we are using the <a href="http://www.aec.gov.au/media/mediafeed/">AEC data</a> feed and <a href="https://firebase.google.com/docs/database/">Firebase Realtime Database</a>. <br /><br />
To make it really easy for people to visualize the elections results we employed a hemicycle (half donut circle) in the left sidebar to display real-time results. We also added "share" and "embed" features so people and media can easily share information about the election.<br /><hr /><div>
<a href="https://3.bp.blogspot.com/-qx55jDBRxlg/V3b-KBi3t3I/AAAAAAAAAfw/1C2qVAr_XHYEOzacYFKIKJ2iL5mMKBIxgCLcB/s1600/Screen%2BShot%2B2016-07-01%2Bat%2B4.34.41%2BPM.png"><img border="0" src="https://3.bp.blogspot.com/-qx55jDBRxlg/V3b-KBi3t3I/AAAAAAAAAfw/1C2qVAr_XHYEOzacYFKIKJ2iL5mMKBIxgCLcB/s640/Screen%2BShot%2B2016-07-01%2Bat%2B4.34.41%2BPM.png"></a></div>
This project was put together by a cross-functional group of Google volunteers including software engineers, UX Designers, product managers and the legal and marketing teams. We'll all be voting on July 2nd, cake in hand. See you at the polls!<br /><br /><table><tbody><tr><td><div>
<img alt="author image" border="0" src="https://3.bp.blogspot.com/-l7PeKvUD1S0/V3b-dE6jnvI/AAAAAAAAAf4/-T3nfduCEUQ0L3zJdHeB2APV9Q2qxv6TgCLcB/s200/Screen%2BShot%2B2016-07-01%2Bat%2B4.35.47%2BPM.png"></div>
</td> <td>About Taylah: <em>I am an Associate Product Manager at Google&#8217;s Sydney office where I work on Google Maps for Android Auto. I love working on Google Maps as you get to help millions of people explore the world every day. When I&#8217;m not at work, I love exploring beautiful places, shopping in thrift stores, painting and spending time with my family and friends.</em></td> </tr></tbody></table><br />]]></description>
				<content:encoded><![CDATA[It's elections time in Australia! With 94% of eligible Australians registered to vote, there will be close to 15 million participants this year.<br />
<br />
Googlers in the Sydney office were recently chatting about the upcoming election and realized we all had similar questions: what were the results last cycle, where are the closest polling stations, and where do we look for real-time results on election day? Friends and family were asking the same questions, so we decided to build a solution using <a href="https://developers.google.com/maps/documentation/javascript/">Google Maps APIs</a>,  <a href="https://firebase.google.com/">Firebase</a>,  <a href="https://cloud.google.com/appengine/">Google App Engine</a>,  <a href="https://cloud.google.com/compute/">Google Cloud Compute</a>,  <a href="http://angular.io/">Angular 2</a>,  <a href="https://translate.google.com/toolkit/list#translations/active">the Google Translation Toolkit</a> and Go.<br />
<br />
<iframe height="400px" src="https://election.google.com.au/?center=-33.924725,151.098863&amp;zoom=13&amp;electorate=barton&amp;sidebar=hide" style="border: none;" width="660px"></iframe><br />
<br />
The aim of <a href="https://election.google.com.au/" >the election map</a> was to provide all the information that Australians would need to participate in the voting process. We wanted to cover pre-, mid- and post-election needs, including:<br />
<br />
<ol>
<li>A polling place locator with searchable addresses, suburbs, and electorates</li>
<li>Directions and navigation to the polling places, accessible via the election map</li>
<li>Real-time election results once polling has closed and counting has started</li>
<li>The ability to share and embed maps.</li>
</ol>
<br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><a href="https://2.bp.blogspot.com/-PV-2nLyjsVc/V3b8VG9AFCI/AAAAAAAAAfc/Z_fcufbQcZMgw7jjDS01XqmAZ75Vvke8ACKgB/s1600/Screen%2BShot%2B2016-07-01%2Bat%2B4.25.04%2BPM.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" src="https://2.bp.blogspot.com/-PV-2nLyjsVc/V3b8VG9AFCI/AAAAAAAAAfc/Z_fcufbQcZMgw7jjDS01XqmAZ75Vvke8ACKgB/s640/Screen%2BShot%2B2016-07-01%2Bat%2B4.25.04%2BPM.png" /></a></td></tr>
<tr><td class="tr-caption" style="text-align: center;">UX mockup: map and fake election results using testing data</td></tr>
</tbody></table>
<br />
<strong>The pre-election map</strong> displays static electorate data, polling booths and ballot papers. It also indicates who won the electorate in the last 2013 election. To do this, we sourced 2013 election data from the Australian Electoral Commission (AEC) and stored it in a Go application intended for Google App Engine so that it could be served to the website frontend. The AEC provided us with data about electorate boundaries and polling place locations.<br />
<br />
The website frontend was built using Angular 2 and we've used several open source projects, including <a href="http://www.gdal.org/">GDAL</a>, <a href="https://github.com/mbloch/mapshaper">mapshaper</a> and a <a href="https://github.com/smira/go-point-clustering">point clustering library</a>. These libraries allowed us to send only the required details for a user's viewport, while keeping data usage reasonably low and reducing visual noise.<br />
<br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><a href="https://1.bp.blogspot.com/-GnV9ivQTO4Y/V3b92Xl9Y0I/AAAAAAAAAfo/WunDpuoNwxsAPXEakq5Ip4q3j3OYQ3pWACLcB/s1600/Screen%2BShot%2B2016-07-01%2Bat%2B4.33.21%2BPM.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" src="https://1.bp.blogspot.com/-GnV9ivQTO4Y/V3b92Xl9Y0I/AAAAAAAAAfo/WunDpuoNwxsAPXEakq5Ip4q3j3OYQ3pWACLcB/s640/Screen%2BShot%2B2016-07-01%2Bat%2B4.33.21%2BPM.png" /></a></td></tr>
<tr><td class="tr-caption" style="text-align: center;">Polling location information with address and directions intent</td></tr>
</tbody></table>
<strong>Day-of website visitors</strong> will have the ability to search for polling stations and learn about what services are available at each location (accessibility, <a href="https://en.wikipedia.org/wiki/Sausage_sizzle">sausage sizzle</a> and/or cake stand). We sourced the sausage sizzle and cake stand data from <a href="http://democracysausage.org/">Democracy Sausage</a> and <a href="http://www.electionsausagesizzle.com.au/">Snagvotes</a>. We used the polling place ID to match these to the AEC polling place identifiers. We built a small Google Compute Engine app which sources the data from our sausage sizzle data sources and broadcasts it out to our live web application using <a href="https://firebase.google.com/docs/database/">Firebase Realtime Database</a>.<br />
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody>
<tr><td style="text-align: center;"><a href="https://2.bp.blogspot.com/-1F7tklP3tTI/V3b9enBijjI/AAAAAAAAAfk/NXglLcD6Tb4kNRpUCG95orGqV7EEgbYRwCLcB/s1600/Screen%2BShot%2B2016-07-01%2Bat%2B4.30.58%2BPM.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" src="https://2.bp.blogspot.com/-1F7tklP3tTI/V3b9enBijjI/AAAAAAAAAfk/NXglLcD6Tb4kNRpUCG95orGqV7EEgbYRwCLcB/s640/Screen%2BShot%2B2016-07-01%2Bat%2B4.30.58%2BPM.png" /></a></td></tr>
<tr><td class="tr-caption" style="text-align: center;">Autocomplete searches for polling locations</td></tr>
</tbody></table>
To enable the search functionality, we use two different services in parallel. We first attempt to match the search query against the electorate list on the client. We also use the <a href="https://developers.google.com/maps/documentation/javascript/places">Google Maps Javascript API Places Library</a> with <a href="https://developers.google.com/places/web-service/autocomplete">Autocomplete</a> to provide suggestions of what users might be searching for, including suburbs, places of interest and addresses. This gives our users the ability to select recommendations instead of having to type full queries.<br />
<br />
Voters also need to plan their trip to the polling booths. We relied on Google Maps' existing real-time traffic information and turn-by-turn directions to provide directions functionality.<br />
<br />
<strong>After 6pm on election night</strong> and when votes begin to be counted, we will switch the site to show real time election results. To do this, again we are using the <a href="http://www.aec.gov.au/media/mediafeed/">AEC data</a> feed and <a href="https://firebase.google.com/docs/database/">Firebase Realtime Database</a>. <br />
<br />
To make it really easy for people to visualize the elections results we employed a hemicycle (half donut circle) in the left sidebar to display real-time results. We also added "share" and "embed" features so people and media can easily share information about the election.<br />
<hr />
<div class="separator" style="clear: both; text-align: center;">
<a href="https://3.bp.blogspot.com/-qx55jDBRxlg/V3b-KBi3t3I/AAAAAAAAAfw/1C2qVAr_XHYEOzacYFKIKJ2iL5mMKBIxgCLcB/s1600/Screen%2BShot%2B2016-07-01%2Bat%2B4.34.41%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="https://3.bp.blogspot.com/-qx55jDBRxlg/V3b-KBi3t3I/AAAAAAAAAfw/1C2qVAr_XHYEOzacYFKIKJ2iL5mMKBIxgCLcB/s640/Screen%2BShot%2B2016-07-01%2Bat%2B4.34.41%2BPM.png" /></a></div>
This project was put together by a cross-functional group of Google volunteers including software engineers, UX Designers, product managers and the legal and marketing teams. We'll all be voting on July 2nd, cake in hand. See you at the polls!<br />
<br />
<table><tbody>
<tr> <td style="width: 80px;"><div class="separator" style="clear: both; text-align: center;">
<img alt="author image" border="0" src="https://3.bp.blogspot.com/-l7PeKvUD1S0/V3b-dE6jnvI/AAAAAAAAAf4/-T3nfduCEUQ0L3zJdHeB2APV9Q2qxv6TgCLcB/s200/Screen%2BShot%2B2016-07-01%2Bat%2B4.35.47%2BPM.png" style="border-radius: 50%; width: 80px;" /></div>
</td> <td>About Taylah: <em>I am an Associate Product Manager at Google’s Sydney office where I work on Google Maps for Android Auto. I love working on Google Maps as you get to help millions of people explore the world every day. When I’m not at work, I love exploring beautiful places, shopping in thrift stores, painting and spending time with my family and friends.</em></td> </tr>
</tbody></table>
<br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/behind-the-australian-elections-map-mapping-democracy-in-real-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Kick off your summer travels with these new Google Maps features</title>
		<link>https://googledata.org/google-maps/kick-off-your-summer-travels-with-these-new-google-maps-features/</link>
		<comments>https://googledata.org/google-maps/kick-off-your-summer-travels-with-these-new-google-maps-features/#comments</comments>
		<pubDate>Thu, 30 Jun 2016 13:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=002c431d55dfbffeaaba9a583230fd54</guid>
		<description><![CDATA[<span>The weather&#8217;s heating up, kids are out of school, and that means only one thing: summer&#8217;s officially here. Summer brings weekend road trips, faraway escapes and all kinds of getaways in between. And with the latest update to Google Maps, we're introducing two new features to get you where you&#8217;re going and help you remember your travels in a brand new way. </span><br /><span><br /></span><span>Road trip warriors can now get multi-stop directions in Google Maps on Android (coming soon to iOS). Just open the app, enter a destination, tap the corner menu, and then click &#8220;Add a stop&#8221;. To rearrange the order of your stops, tap and hold the three dot menu to the left of &#8220;Add stop&#8221; and drag it to the position you want &#8211; you can even search for types of places like gas stations or restaurants like you normally would. Once you&#8217;ve added all your stops, tap &#8220;Done&#8221; and your multi-stop route is complete. When you enter navigation mode you&#8217;ll have the same seamless driving experience you&#8217;re used to, whether you&#8217;re going from errand to errand or hitting scenic spots along Route 66.</span><br /><span><br /></span><br /><div><a href="http://2.bp.blogspot.com/-8l52kBKmhmA/V3Qoz9DcoAI/AAAAAAAAE4c/7graHk1fHLISmRcxeMyI19W7tcfXBSZyQCK4B/s1600/image%2B%25283%2529.gif"><span></span></a></div><div><span><a href="http://3.bp.blogspot.com/-nobE_2186a8/V3RvdoByUGI/AAAAAAAAE44/vphlFNOvpj8FzAQC2mKHBpTU6Q8RNRY_wCK4B/s1600/ForOlga_1.5sec.gif"><img border="0" height="640" src="https://3.bp.blogspot.com/-nobE_2186a8/V3RvdoByUGI/AAAAAAAAE44/vphlFNOvpj8FzAQC2mKHBpTU6Q8RNRY_wCK4B/s640/ForOlga_1.5sec.gif" width="360"></a></span></div><div><span>A lot of the fun of traveling is the memories created while exploring new places with friends, family or even solo. Pictures are a traditional way to remember those moments, but now Your Timeline users on Android can preserve their travel memories and info in a new way. Google Maps users with Location History enabled can open Your Timeline, select a date from their recent vacation or everyday life and add notes to help remember what they did that day&#8212;or save important notes for later.</span></div><br /><div><a href="http://4.bp.blogspot.com/-1f1ke8vLsBA/V3QqyTw0nlI/AAAAAAAAE4o/ki2V_h-v3UkMk5IsYBPf-OHS4f_E1YxUQCK4B/s1600/Screen%2BShot%2B2016-06-29%2Bat%2B1.07.58%2BPM.png"><img border="0" height="640" src="https://4.bp.blogspot.com/-1f1ke8vLsBA/V3QqyTw0nlI/AAAAAAAAE4o/ki2V_h-v3UkMk5IsYBPf-OHS4f_E1YxUQCK4B/s640/Screen%2BShot%2B2016-06-29%2Bat%2B1.07.58%2BPM.png" width="360"></a></div><div><span><span></span></span></div><div><span><span><br /></span></span><br /><div><span>No matter where your travels take you this summer and beyond, these new Google Maps features will get you there and help keep track of all the memories you make along the way.</span></div></div><span><br /></span><i><span>Posted by Liz Davidoff, Communications Manager, Google Maps<br /></span></i><br /><br />]]></description>
				<content:encoded><![CDATA[<span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">The weather’s heating up, kids are out of school, and that means only one thing: summer’s officially here. Summer brings weekend road trips, faraway escapes and all kinds of getaways in between. And with the latest update to Google Maps, we're introducing two new features to get you where you’re going and help you remember your travels in a brand new way. </span><br /><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;"><br /></span><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">Road trip warriors can now get multi-stop directions in Google Maps on Android (coming soon to iOS). Just open the app, enter a destination, tap the corner menu, and then click “Add a stop”. To rearrange the order of your stops, tap and hold the three dot menu to the left of “Add stop” and drag it to the position you want – you can even search for types of places like gas stations or restaurants like you normally would. Once you’ve added all your stops, tap “Done” and your multi-stop route is complete. When you enter navigation mode you’ll have the same seamless driving experience you’re used to, whether you’re going from errand to errand or hitting scenic spots along Route 66.</span><br /><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;"><br /></span><br /><div style="text-align: center;"><a href="http://2.bp.blogspot.com/-8l52kBKmhmA/V3Qoz9DcoAI/AAAAAAAAE4c/7graHk1fHLISmRcxeMyI19W7tcfXBSZyQCK4B/s1600/image%2B%25283%2529.gif" imageanchor="1"><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;"></span></a></div><div style="text-align: center;"><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;"><a href="http://3.bp.blogspot.com/-nobE_2186a8/V3RvdoByUGI/AAAAAAAAE44/vphlFNOvpj8FzAQC2mKHBpTU6Q8RNRY_wCK4B/s1600/ForOlga_1.5sec.gif" imageanchor="1"><img border="0" height="640" src="https://3.bp.blogspot.com/-nobE_2186a8/V3RvdoByUGI/AAAAAAAAE44/vphlFNOvpj8FzAQC2mKHBpTU6Q8RNRY_wCK4B/s640/ForOlga_1.5sec.gif" width="360" /></a></span></div><div style="text-align: left;"><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">A lot of the fun of traveling is the memories created while exploring new places with friends, family or even solo. Pictures are a traditional way to remember those moments, but now Your Timeline users on Android can preserve their travel memories and info in a new way. Google Maps users with Location History enabled can open Your Timeline, select a date from their recent vacation or everyday life and add notes to help remember what they did that day—or save important notes for later.</span></div><br /><div style="text-align: center;"><a href="http://4.bp.blogspot.com/-1f1ke8vLsBA/V3QqyTw0nlI/AAAAAAAAE4o/ki2V_h-v3UkMk5IsYBPf-OHS4f_E1YxUQCK4B/s1600/Screen%2BShot%2B2016-06-29%2Bat%2B1.07.58%2BPM.png" imageanchor="1"><img border="0" height="640" src="https://4.bp.blogspot.com/-1f1ke8vLsBA/V3QqyTw0nlI/AAAAAAAAE4o/ki2V_h-v3UkMk5IsYBPf-OHS4f_E1YxUQCK4B/s640/Screen%2BShot%2B2016-06-29%2Bat%2B1.07.58%2BPM.png" width="360" /></a></div><div style="text-align: center;"><span id="docs-internal-guid-d4bcee10-9dc0-60a7-6f2b-32b22c1f3bca"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"></span></span></div><div style="text-align: center;"><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><span style="font-size: 14.6667px;"><br /></span></span><br /><div style="text-align: left;"><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; vertical-align: baseline; white-space: pre-wrap;">No matter where your travels take you this summer and beyond, these new Google Maps features will get you there and help keep track of all the memories you make along the way.</span></div></div><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;"><br /></span><i><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif;">Posted by Liz Davidoff, Communications Manager, Google Maps<br /></span></i><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/kick-off-your-summer-travels-with-these-new-google-maps-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Marker zIndex and more come to the Google Maps Android API</title>
		<link>https://googledata.org/google-maps/marker-zindex-and-more-come-to-the-google-maps-android-api/</link>
		<comments>https://googledata.org/google-maps/marker-zindex-and-more-come-to-the-google-maps-android-api/#comments</comments>
		<pubDate>Mon, 27 Jun 2016 23:36:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=105c00de197ba6606d8fb182f74bb131</guid>
		<description><![CDATA[Released today, the latest version of the Google Maps Android API includes several popular developer requested features including the ability to order the display of markers on the map with the new marker zIndex property, the ability to set the transparency of your tile overlays, and a new circle click listener.<br /><br /><br /><h2> <span><span>Marker zIndex</span></span></h2> <a href="https://developers.google.com/maps/documentation/android-api/marker#marker_z-index">Marker zIndex</a> is one of the most requested features on our <a href="https://code.google.com/p/gmaps-api-issues/issues/list?can=2&#38;q=apitype:Android2%20type:Enhancement&#38;sort=-stars&#38;colspec=ID%20Type%20Status%20Introduced%20Fixed%20Summary%20Internal%20Stars">issue tracker</a> - today's release gives you the ability to control the order in which markers are displayed on the map [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=7762">Issue 7762</a>]. This gives you control over which tap target your user is most likely to hit by setting the zIndex property on each marker. The markers are drawn in order of the zIndex, with the the highest zIndex marker drawn on top.<br /><br /><br /><table><tbody><tr><td><div> </div> <div> <img alt="animated image with cars moving over a plane" border="0" height="320" src="https://1.bp.blogspot.com/-YZG7bs2TbdE/V3G1oX1dUyI/AAAAAAAAAe4/02TZqbb__UUaAHmW7Gr9Ir4GFHtfRxQ9QCLcB/s320/image02.gif" width="154"></div><br /><div> </div> </td>    <td><div> </div> <div> <img alt="animated image with cars moving under a plane thanks to zIndex" border="0" height="320" src="https://3.bp.blogspot.com/-Dd8C6bXOZfk/V3G1odxB_XI/AAAAAAAAAe8/6k43a5v0MXkGjAkKG_20T2hteM2scz0PACLcB/s320/image00.gif" width="154"></div><br /><div> </div> </td> </tr><tr><td><b>Before: </b>No control over the marker zIndex. The plane will be obscured by some of the cars.</td>  <td><b>After:</b> The zIndex of the plane is set to be the highest. The plane is now always visible on top.</td> </tr></tbody></table><br /><h2> <span><span>Tile overlay transparency</span></span></h2> Just like ground overlays, you can now set the <a href="https://developers.google.com/maps/documentation/android-api/tileoverlay#transparency">transparency of your tile overlay</a> to allow the basemap to show through [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=4765">Issue 4765</a>].<br /><span><span> </span></span> <br /><h2> <span><span><span>Circle clickability</span></span></span></h2> Just like polylines and polygons, apps compiled with the latest release can now have circle clickability via the <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap.OnCircleClickListener">OnCircleClickListener</a></span>. You can enable or disable the clickability of circles by calling <span>setClickable(boolean)</span> on the relevant circle.<br /><br /><h2> <span><span><span>getMapAsync() now required</span></span></span></h2> In December 2014 <a href="https://developers.google.com/maps/documentation/android-api/releases#december_8_2014">we deprecated getMap()</a> in favor of <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/MapFragment.html#public-methods">getMapAsync()</a></span>. From this release onwards, you'll need to use <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/MapFragment.html#public-methods">getMapAsync()</a></span> in order to compile your apps. Note that existing apps in the wild on your users' devices won't be impacted by this change as the <span>getMap()</span> method still exists within the Google Play Services APK that is delivered to Android devices.<br /><br />
 If you haven't already done so, follow these steps:<br /><br />
 Here's a sample fragment using the deprecated <span>getMap()</span>, with a fictitious <span>doStuff()</span> method that would implement the fragment's initial logic:<br /><pre>import android.os.Bundle;
 import android.support.v4.app.FragmentActivity;
 import com.google.android.gms.maps.GoogleMap;
 import com.google.android.gms.maps.SupportMapFragment;

 public class MainActivity extends FragmentActivity {

     private GoogleMap mMap;

     @Override
     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
         mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
         doStuff();
     }

 }</pre><br /><br />
 The above however was error prone, since <span>getMap()</span> could potentially return null. Here's the same sample using <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/MapFragment.html#public-methods">getMapAsync()</a></span>:<br /><br /><pre>import android.os.Bundle;
 import android.support.v4.app.FragmentActivity;
 import com.google.android.gms.maps.GoogleMap;
 import com.google.android.gms.maps.OnMapReadyCallback;
 import com.google.android.gms.maps.SupportMapFragment;

 public class MainActivity extends FragmentActivity implements OnMapReadyCallback {

     private GoogleMap mMap;

     @Override
     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
         ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMapAsync(this);
     }

     @Override
     public void onMapReady(GoogleMap map) {
         mMap = map;
         doStuff();
     }

 }</pre><br />
 You can see we now implement the <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/OnMapReadyCallback">OnMapReadyCallback</a></span> interface which defines the <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/OnMapReadyCallback.html#public-methods">onMapReady()</a></span> method, which will be called when the <a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap"><span>GoogleMap</span></a> instance is ready. We&#8217;ve also moved the call to the fictitious <span>doStuff()</span> method into <span><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/OnMapReadyCallback.html#public-methods">onMapReady()</a></span>, since this is where we now want to start the fragment's initial logic.<br /><br />
 A big thank you to Android developers everywhere for using the Google Maps Android API and submitting feedback via the <a href="https://code.google.com/p/gmaps-api-issues/">issue tracker</a>.<br /><br />
 Our <a href="https://developers.google.com/maps/documentation/android-api/releases#june_27_2016">release notes</a> contain details of bugs fixed, deprecation notices, as well as the features mentioned in this post. Take a look and start using our new features today!<br /><br /><br /><br /><table><tbody><tr><td><div> <img border="0" src="https://lh3.googleusercontent.com/jtHHfhZBUMZNUp22QRmsOJxWQ2Vb3bOHmlq0tO9yk8bxgrbZR3G1jSxBIjTNp-6zIPYq03hOPGzJxk-ySJpjPE5C5nQ6xoBXhoj--1-zSy1DVtxW-UnWZIp4i6H3IcMU18hLdBZh" alt="author image"></div> </td> <td><em>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs.</em></td> </tr></tbody></table>]]></description>
				<content:encoded><![CDATA[ Released today, the latest version of the Google Maps Android API includes several popular developer requested features including the ability to order the display of markers on the map with the new marker zIndex property, the ability to set the transparency of your tile overlays, and a new circle click listener.<br />
<br />
 <br />
 <h2> <span style="color: #444444; font-family: &quot;arial&quot;;"><span style="background-color: white; font-size: 14.6667px; white-space: pre-wrap;">Marker zIndex</span></span></h2> <a href="https://developers.google.com/maps/documentation/android-api/marker#marker_z-index">Marker zIndex</a> is one of the most requested features on our <a href="https://code.google.com/p/gmaps-api-issues/issues/list?can=2&amp;q=apitype:Android2%20type:Enhancement&amp;sort=-stars&amp;colspec=ID%20Type%20Status%20Introduced%20Fixed%20Summary%20Internal%20Stars">issue tracker</a> - today's release gives you the ability to control the order in which markers are displayed on the map [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=7762">Issue 7762</a>]. This gives you control over which tap target your user is most likely to hit by setting the zIndex property on each marker. The markers are drawn in order of the zIndex, with the the highest zIndex marker drawn on top.<br />
<br />
<br />
 <table><tbody>
 <tr>  <td><div class="separator" style="clear: both; text-align: center;"> </div> <div style="margin-left: 1em; margin-right: 1em;"> <img alt="animated image with cars moving over a plane" border="0" height="320" src="https://1.bp.blogspot.com/-YZG7bs2TbdE/V3G1oX1dUyI/AAAAAAAAAe4/02TZqbb__UUaAHmW7Gr9Ir4GFHtfRxQ9QCLcB/s320/image02.gif" style="margin: 0px auto; text-align: center;" width="154" /></div><br />
 <div> </div> </td>    <td><div class="separator" style="clear: both; text-align: center;"> </div> <div style="margin-left: 1em; margin-right: 1em;"> <img alt="animated image with cars moving under a plane thanks to zIndex" border="0" height="320" src="https://3.bp.blogspot.com/-Dd8C6bXOZfk/V3G1odxB_XI/AAAAAAAAAe8/6k43a5v0MXkGjAkKG_20T2hteM2scz0PACLcB/s320/image00.gif" style="margin: 0px auto; text-align: center;" width="154" /></div><br />
 <div> </div> </td> </tr>
 <tr> <td><b>Before: </b>No control over the marker zIndex. The plane will be obscured by some of the cars.</td>  <td><b>After:</b> The zIndex of the plane is set to be the highest. The plane is now always visible on top.</td> </tr>
 </tbody> </table><br />
 <h2> <span style="color: #444444; font-family: &quot;arial&quot;;"><span style="background-color: white; font-size: 14.6667px; white-space: pre-wrap;">Tile overlay transparency</span></span></h2> Just like ground overlays, you can now set the <a href="https://developers.google.com/maps/documentation/android-api/tileoverlay#transparency">transparency of your tile overlay</a> to allow the basemap to show through [<a href="https://code.google.com/p/gmaps-api-issues/issues/detail?id=4765">Issue 4765</a>].<br />
 <span style="color: #444444; font-family: &quot;arial&quot;;"><span style="background-color: white; font-size: 14.6667px; white-space: pre-wrap;"> </span></span> <br />
 <h2> <span style="color: #444444; font-family: &quot;arial&quot;;"><span style="background-color: white; font-size: 14.6667px; white-space: pre-wrap;"><span style="font-size: 14.6667px;">Circle clickability</span></span></span></h2> Just like polylines and polygons, apps compiled with the latest release can now have circle clickability via the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap.OnCircleClickListener">OnCircleClickListener</a></span>. You can enable or disable the clickability of circles by calling <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">setClickable(boolean)</span> on the relevant circle.<br />
<br />
 <h2> <span style="color: #444444; font-family: &quot;arial&quot;;"><span style="background-color: white; font-size: 14.6667px; white-space: pre-wrap;"><span style="font-size: 14.6667px;">getMapAsync() now required</span></span></span></h2> In December 2014 <a href="https://developers.google.com/maps/documentation/android-api/releases#december_8_2014">we deprecated getMap()</a> in favor of <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/MapFragment.html#public-methods">getMapAsync()</a></span>. From this release onwards, you'll need to use <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/MapFragment.html#public-methods">getMapAsync()</a></span> in order to compile your apps. Note that existing apps in the wild on your users' devices won't be impacted by this change as the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">getMap()</span> method still exists within the Google Play Services APK that is delivered to Android devices.<br />
<br />
 If you haven't already done so, follow these steps:<br />
<br />
 Here's a sample fragment using the deprecated <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">getMap()</span>, with a fictitious <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">doStuff()</span> method that would implement the fragment's initial logic:<br />
 <pre>import android.os.Bundle;
 import android.support.v4.app.FragmentActivity;
 import com.google.android.gms.maps.GoogleMap;
 import com.google.android.gms.maps.SupportMapFragment;

 public class MainActivity extends FragmentActivity {

     private GoogleMap mMap;

     @Override
     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
         mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
         doStuff();
     }

 }</pre><br />
<br />
 The above however was error prone, since <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">getMap()</span> could potentially return null. Here's the same sample using <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/MapFragment.html#public-methods">getMapAsync()</a></span>:<br />
<br />
 <pre>import android.os.Bundle;
 import android.support.v4.app.FragmentActivity;
 import com.google.android.gms.maps.GoogleMap;
 import com.google.android.gms.maps.OnMapReadyCallback;
 import com.google.android.gms.maps.SupportMapFragment;

 public class MainActivity extends FragmentActivity implements OnMapReadyCallback {

     private GoogleMap mMap;

     @Override
     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
         ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMapAsync(this);
     }

     @Override
     public void onMapReady(GoogleMap map) {
         mMap = map;
         doStuff();
     }

 }</pre><br />
 You can see we now implement the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/OnMapReadyCallback">OnMapReadyCallback</a></span> interface which defines the <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/OnMapReadyCallback.html#public-methods">onMapReady()</a></span> method, which will be called when the <a href="https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap"><span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">GoogleMap</span></a> instance is ready. We’ve also moved the call to the fictitious <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">doStuff()</span> method into <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/android/reference/com/google/android/gms/maps/OnMapReadyCallback.html#public-methods">onMapReady()</a></span>, since this is where we now want to start the fragment's initial logic.<br />
<br />
 A big thank you to Android developers everywhere for using the Google Maps Android API and submitting feedback via the <a href="https://code.google.com/p/gmaps-api-issues/">issue tracker</a>.<br />
<br />
 Our <a href="https://developers.google.com/maps/documentation/android-api/releases#june_27_2016">release notes</a> contain details of bugs fixed, deprecation notices, as well as the features mentioned in this post. Take a look and start using our new features today!<br />
<br />
 <br><br><table><tbody>
 <tr> <td style="width: 80px;"><div class="separator" style="clear: both; text-align: center;"> <img border="0" src="https://lh3.googleusercontent.com/jtHHfhZBUMZNUp22QRmsOJxWQ2Vb3bOHmlq0tO9yk8bxgrbZR3G1jSxBIjTNp-6zIPYq03hOPGzJxk-ySJpjPE5C5nQ6xoBXhoj--1-zSy1DVtxW-UnWZIp4i6H3IcMU18hLdBZh" style="border-radius: 50%; width: 80px;" alt="author image" /></div> </td> <td><em>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs.</em></td> </tr>
 </tbody></table>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/marker-zindex-and-more-come-to-the-google-maps-android-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Keeping Earth up to date and looking great</title>
		<link>https://googledata.org/google-earth/keeping-earth-up-to-date-and-looking-great/</link>
		<comments>https://googledata.org/google-earth/keeping-earth-up-to-date-and-looking-great/#comments</comments>
		<pubDate>Mon, 27 Jun 2016 15:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=8b47858848ff419dd17a888081b13b23</guid>
		<description><![CDATA[<div dir="ltr"><span>Three years ago we introduced a </span><a href="https://maps.googleblog.com/2013/06/only-clear-skies-on-google-maps-and.html"><span>cloud-free mosaic of the world</span></a><span> in Google Earth. Today we&#8217;re rolling out an even more beautiful and seamless version, with fresh imagery from Landsat 8 satellite and new processing techniques for sharper images than ever before. Satellite images are often cloudy, but not always over the same place, so we looked at millions of images and took the clearest pixels to stitch together this cloud-free and seamless image.</span></div><div dir="ltr"><span><img height="332" src="https://lh4.googleusercontent.com/RYYjEh-Oag8AuDB5HTer0n9XqcfUAF_uhKEqTUSg-HOkK7swISCI7WTGexrqV0S7dCF1eerMJ-fA9AFkLAbdXY7hb5FnZTIBkQ9eFsdgluge-jlceM2lYTpaoow2sbw9UBk_jNLh" width="614"></span></div><div dir="ltr"><span>Columbia Glacier, Alaska</span></div><div dir="ltr"><span><img height="341" src="https://lh5.googleusercontent.com/TP4NMlySfltG4LMSwu1_RJ4bEsQaUWwoicOY87yLCDuiZdx1NtzgSaDDYKQMfuPcMNqcH8SAxbOGZ-NeBvCDfu5UTNAJCZ35gyF2Plnapb_cvm75RYcaHUKGDTOIGJDmhKTGxABK" width="616"></span></div><div dir="ltr"><span>Detroit, Michigan</span></div><div dir="ltr"><span><img height="362" src="https://lh6.googleusercontent.com/P-MmIm5KUdxPSItwneN_L4QRQqdWbiHdCYwryieuVLCEs0rxd2PtMpsmaMNRN9im-1ezJVs6IZ5ljgDRwtUM1jm6gIma8X1zYkTkddNN6Jd0phMwwm1DntVjksqxT4kk-rReSRQr" width="623"></span></div><div dir="ltr"><span>Swiss Alps, Switzerland</span></div><div dir="ltr"><span>Higher Quality Imagery </span></div><div dir="ltr"><a href="http://landsat.gsfc.nasa.gov/?page_id=4071"><span>Landsat 8</span></a><span>, which launched into orbit in 2013,</span><span> </span><span>is the newest sensor in the USGS/NASA Landsat Program&#8212;superior to its predecessors in many ways. Landsat 8 captures images with greater detail, truer colors, and at an unprecedented frequency&#8212;capturing twice as many images as Landsat 7 does every day. </span><span>This new rendition of Earth uses the most recent data available -- mostly from Landsat 8 -- making it </span><span>our freshest global mosaic to date. </span></div><b><span><span><img height="205" src="https://lh4.googleusercontent.com/7_xygPeeNyXJwL3xJtRvaDXBwbPklpzJj71J5wlJ6iEesMhixhKx2PsBAhV_lx1U0s4Q7ylnPaEGXw-1F2EQT2zWE-AhDQBpHP93Xdky08QIGmryjxFLaJti1jT7KfSSSm-wbvS5" width="300"></span></span></b><br /><b><span><span><img height="205" src="https://lh5.googleusercontent.com/N7NDQWxhezcXzJ38ah-06T4OIOmk0J9ffN0wpIgzoC9LAv1GuyhdzAyAZhhWtZeoVf9f7zteK6OulRyhHish7JKmNQyL0v8MsXoVEEZ-VOq0z6Mgu2yctsLxYE_-tA5l3C6QQgnL" width="300"></span></span></b><br /><div dir="ltr"><span></span><span></span></div><div dir="ltr"><span>In the new view of New </span><span>York</span><span> City, details like skyscrapers, building shadows, and baseball and softball fields in Central Park shine through.</span></div><b><br /></b><br /><div dir="ltr"><span>Our previous mosaic used imagery from Landsat 7 only, which at the time was the best imagery of its kind. Unfortunately, Landsat 7 images captured after 2003 were affected by a </span><a href="http://landsat.usgs.gov/products_slcoffbackground.php"><span>hardware failure</span></a><span>, resulting in large diagonal gaps of missing data You can see this effect in the subsets of two Landsat 7 images captured over Oklahoma City, OK, in 2000 and 2003. </span><br /><span><span><span><img height="287" src="https://lh3.googleusercontent.com/eo5Xhm9EwYiMX5yTys7ml2L5ETGi__SxYTQuMYq4QtHQCKqbFv9MNjB04dd8SFUTBM4mpZobjtJQXvjUxTFGZNWkmcZTNZzglegxSIB1GZzPy6dk_PVojzCfhrbKZEibthW7QfaN" width="306"></span></span></span><br /><div><span><span><span>               </span></span></span><span>July 9, 2000</span></div><span><img height="286" src="https://lh6.googleusercontent.com/2ClaflADbSY3YcItUgKwjGLXLABpQKWDQ18odvA9DomyujoOiN8nihddIcRjjsywPL7CYwYhw3ZzJwbtSaLfJodb-NoXMmCoQsW2074H74kqJhSBuSghdT2PgLJtXK7nCkYs4i51" width="305"></span><br /><div><span><span><span> September 20, 2003</span></span></span></div></div><div dir="ltr"><span>Processing imagery with Earth Engine</span></div><div dir="ltr"><span>To produce this new imagery, we used the same publicly available Earth Engine APIs that scientists use to do things like </span><a href="https://googleresearch.blogspot.com/2013/11/the-first-detailed-maps-of-global.html"><span>track global tree cover, loss, and gain</span></a><span>; </span><a href="https://www.ucsf.edu/news/2014/09/116906/ucsf-google-earth-engine-making-maps-predict-malaria"><span>predict Malaria outbreaks</span></a><span>; and </span><a href="http://www.peer.eu/news-events/detail/?tx_frontendlist_pi1%5Buid%5D=793&#38;cHash=4531f341985e0e934777caf689a00cc3"><span>map global surface water over a 30 year period</span></a><span>.</span></div><b><br /></b><br /><div dir="ltr"><span>Like our previous mosaic, we mined data from nearly a petabyte of Landsat imagery&#8212;that&#8217;s more than 700 trillion individual pixels&#8212;to choose the best cloud-free pixels. To put that in perspective, 700 trillion pixels is 7,000 times more pixels than the estimated number of stars in the Milky Way Galaxy, or 70 times more pixels than the estimated number of galaxies in the Universe.</span></div><div dir="ltr"><span><img height="298" src="https://lh4.googleusercontent.com/lRIFu8XBmjtPafXm68lvlZPW7vAy4m9LppQjtFyPTo5mrbuH0ZXvFx07foXvfU47MgXVVDmaJ4Aws5uOV63oBGUGg1TcMmCST5gQ_hVZUDuggRMa49dAD9ECTd8k_BVck2nfKoCy" width="607"></span></div><div dir="ltr"><span>Lake Balkhash, Kazakhstan</span></div><b><br /></b><br /><div dir="ltr"><span><img alt="Screen Shot 2016-06-23 at 3.31.37 PM.jpg" height="351" src="https://lh4.googleusercontent.com/x4w7ippMRJ0xFTMXVIPX6rIuReynuh-CBdXuoxBmTsA4YLpTqiVUA-jCPdkGJfYrINF9WXOhr70L6EGAPeE2xjKKnioW3nZbidH5fJdYW6xkGKWrwMIk-cI_Dnc7I9otWclNGLi6" width="621"></span></div><div dir="ltr"><span>Brasilia, Brazil</span></div><div dir="ltr"><span>Open data is good for everyone</span></div><div dir="ltr"><span>This update was made possible in a large part thanks to the </span><a href="http://landsat.usgs.gov/"><span>Landsat</span></a><span> program and its commitment to free and accessible open data. Landsat, a joint program of the USGS and NASA, has observed the Earth continuously from 1972 to the present day and offers a wealth of information on the changes to the Earth's surface over time. And it's all available in Earth Engine!</span><br /><span><br /></span><span><span><span>The new imagery is now available across all our mapping products. To check it out, open up Google Earth</span><span>, or turn on the satellite layer </span><span>in Google Maps.</span></span></span></div><br /><span>Post authored by: Chris Herwig, Program Manager, Google Earth Engine</span>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: black; font-family: &quot;roboto&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;">Three years ago we introduced a </span><a href="https://maps.googleblog.com/2013/06/only-clear-skies-on-google-maps-and.html" style="line-height: 1.38; text-decoration: none;"><span style="color: #1155cc; font-family: &quot;roboto&quot;; font-size: 13.3333px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">cloud-free mosaic of the world</span></a><span style="color: black; font-family: &quot;roboto&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"> in Google Earth. Today we’re rolling out an even more beautiful and seamless version, with fresh imagery from Landsat 8 satellite and new processing techniques for sharper images than ever before. Satellite images are often cloudy, but not always over the same place, so we looked at millions of images and took the clearest pixels to stitch together this cloud-free and seamless image.</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="332" src="https://lh4.googleusercontent.com/RYYjEh-Oag8AuDB5HTer0n9XqcfUAF_uhKEqTUSg-HOkK7swISCI7WTGexrqV0S7dCF1eerMJ-fA9AFkLAbdXY7hb5FnZTIBkQ9eFsdgluge-jlceM2lYTpaoow2sbw9UBk_jNLh" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="614" /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: italic; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Columbia Glacier, Alaska</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="341" src="https://lh5.googleusercontent.com/TP4NMlySfltG4LMSwu1_RJ4bEsQaUWwoicOY87yLCDuiZdx1NtzgSaDDYKQMfuPcMNqcH8SAxbOGZ-NeBvCDfu5UTNAJCZ35gyF2Plnapb_cvm75RYcaHUKGDTOIGJDmhKTGxABK" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="616" /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: italic; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Detroit, Michigan</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="362" src="https://lh6.googleusercontent.com/P-MmIm5KUdxPSItwneN_L4QRQqdWbiHdCYwryieuVLCEs0rxd2PtMpsmaMNRN9im-1ezJVs6IZ5ljgDRwtUM1jm6gIma8X1zYkTkddNN6Jd0phMwwm1DntVjksqxT4kk-rReSRQr" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="623" /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: italic; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Swiss Alps, Switzerland</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Higher Quality Imagery </span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><a href="http://landsat.gsfc.nasa.gov/?page_id=4071" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">Landsat 8</span></a><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">, which launched into orbit in 2013,</span><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> </span><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">is the newest sensor in the USGS/NASA Landsat Program—superior to its predecessors in many ways. Landsat 8 captures images with greater detail, truer colors, and at an unprecedented frequency—capturing twice as many images as Landsat 7 does every day. </span><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">This new rendition of Earth uses the most recent data available -- mostly from Landsat 8 -- making it </span><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">our freshest global mosaic to date. </span></div><b style="font-weight: normal;"><span id="docs-internal-guid-434054f8-9237-ad92-4542-f3acdc4cf775"><span style="font-family: &quot;roboto&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img height="205" src="https://lh4.googleusercontent.com/7_xygPeeNyXJwL3xJtRvaDXBwbPklpzJj71J5wlJ6iEesMhixhKx2PsBAhV_lx1U0s4Q7ylnPaEGXw-1F2EQT2zWE-AhDQBpHP93Xdky08QIGmryjxFLaJti1jT7KfSSSm-wbvS5" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="300" /></span></span></b><br /><b style="font-weight: normal;"><span id="docs-internal-guid-434054f8-9237-cb33-13af-4867fdc8d901"><span style="font-family: &quot;roboto&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img height="205" src="https://lh5.googleusercontent.com/N7NDQWxhezcXzJ38ah-06T4OIOmk0J9ffN0wpIgzoC9LAv1GuyhdzAyAZhhWtZeoVf9f7zteK6OulRyhHish7JKmNQyL0v8MsXoVEEZ-VOq0z6Mgu2yctsLxYE_-tA5l3C6QQgnL" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="300" /></span></span></b><br /><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"></span><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 12px; font-style: italic; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">In the new view of New </span><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: italic; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">York</span><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 12px; font-style: italic; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> City, details like skyscrapers, building shadows, and baseball and softball fields in Central Park shine through.</span></div><b style="font-weight: normal;"><br /></b><br /><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Our previous mosaic used imagery from Landsat 7 only, which at the time was the best imagery of its kind. Unfortunately, Landsat 7 images captured after 2003 were affected by a </span><a href="http://landsat.usgs.gov/products_slcoffbackground.php" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">hardware failure</span></a><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">, resulting in large diagonal gaps of missing data You can see this effect in the subsets of two Landsat 7 images captured over Oklahoma City, OK, in 2000 and 2003. </span><br /><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span id="docs-internal-guid-434054f8-9235-9f3b-6c28-c1491f5ddfa2"><span style="font-family: &quot;roboto&quot;; font-size: 13.3333px; vertical-align: baseline;"><img height="287" src="https://lh3.googleusercontent.com/eo5Xhm9EwYiMX5yTys7ml2L5ETGi__SxYTQuMYq4QtHQCKqbFv9MNjB04dd8SFUTBM4mpZobjtJQXvjUxTFGZNWkmcZTNZzglegxSIB1GZzPy6dk_PVojzCfhrbKZEibthW7QfaN" style="border: none; transform: rotate(0rad);" width="306" />    </span></span></span><br /><div style="text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span id="docs-internal-guid-434054f8-9236-0fd9-ce7e-18cd7c44fc3c"><span style="font-family: &quot;roboto&quot;; font-size: 13.3333px; vertical-align: baseline;">               </span></span></span><span style="font-family: &quot;roboto&quot;; font-size: 13.3333px; line-height: 1.38; white-space: pre-wrap;">July 9, 2000</span></div><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="286" src="https://lh6.googleusercontent.com/2ClaflADbSY3YcItUgKwjGLXLABpQKWDQ18odvA9DomyujoOiN8nihddIcRjjsywPL7CYwYhw3ZzJwbtSaLfJodb-NoXMmCoQsW2074H74kqJhSBuSghdT2PgLJtXK7nCkYs4i51" style="border: none; font-family: Roboto; font-size: 13.3333px; line-height: 1.38; transform: rotate(0rad);" width="305" /></span><br /><div style="text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span id="docs-internal-guid-434054f8-9237-0f4a-d16a-ba4ca8ce2ee0"><span style="font-family: &quot;roboto&quot;; font-size: 13.3333px; vertical-align: baseline;"> September 20, 2003</span></span></span></div></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Processing imagery with Earth Engine</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: #333333; font-family: &quot;arial&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">To produce this new imagery, we used the same publicly available Earth Engine APIs that scientists use to do things like </span><a href="https://googleresearch.blogspot.com/2013/11/the-first-detailed-maps-of-global.html" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">track global tree cover, loss, and gain</span></a><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">; </span><a href="https://www.ucsf.edu/news/2014/09/116906/ucsf-google-earth-engine-making-maps-predict-malaria" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">predict Malaria outbreaks</span></a><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">; and </span><a href="http://www.peer.eu/news-events/detail/?tx_frontendlist_pi1%5Buid%5D=793&amp;cHash=4531f341985e0e934777caf689a00cc3" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">map global surface water over a 30 year period</span></a><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">.</span></div><b style="font-weight: normal;"><br /></b><br /><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Like our previous mosaic, we mined data from nearly a petabyte of Landsat imagery—that’s more than 700 trillion individual pixels—to choose the best cloud-free pixels. To put that in perspective, 700 trillion pixels is 7,000 times more pixels than the estimated number of stars in the Milky Way Galaxy, or 70 times more pixels than the estimated number of galaxies in the Universe.</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="298" src="https://lh4.googleusercontent.com/lRIFu8XBmjtPafXm68lvlZPW7vAy4m9LppQjtFyPTo5mrbuH0ZXvFx07foXvfU47MgXVVDmaJ4Aws5uOV63oBGUGg1TcMmCST5gQ_hVZUDuggRMa49dAD9ECTd8k_BVck2nfKoCy" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="607" /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: italic; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Lake Balkhash, Kazakhstan</span></div><b style="font-weight: normal;"><br /></b><br /><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img alt="Screen Shot 2016-06-23 at 3.31.37 PM.jpg" height="351" src="https://lh4.googleusercontent.com/x4w7ippMRJ0xFTMXVIPX6rIuReynuh-CBdXuoxBmTsA4YLpTqiVUA-jCPdkGJfYrINF9WXOhr70L6EGAPeE2xjKKnioW3nZbidH5fJdYW6xkGKWrwMIk-cI_Dnc7I9otWclNGLi6" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="621" /></span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: italic; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Brasilia, Brazil</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 700; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">Open data is good for everyone</span></div><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">This update was made possible in a large part thanks to the </span><a href="http://landsat.usgs.gov/" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">Landsat</span></a><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> program and its commitment to free and accessible open data. Landsat, a joint program of the USGS and NASA, has observed the Earth continuously from 1972 to the present day and offers a wealth of information on the changes to the Earth's surface over time. And it's all available in Earth Engine!</span><br /><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><br /></span><span style="background-color: transparent; color: black; font-family: &quot;roboto&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span id="docs-internal-guid-434054f8-9247-638a-a304-71da453c0a3b"><span style="color: #263238; font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline;">The new imagery is now available across all our mapping products. To check it out, open up Google Earth</span><span style="color: #263238; font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline;">, or turn on the satellite layer </span><span style="color: #263238; font-family: &quot;arial&quot;; font-size: 13.3333px; vertical-align: baseline;">in Google Maps.</span></span></span></div><br /><span style="font-family: &quot;roboto&quot;; font-size: 13.3333px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;">Post authored by: Chris Herwig, Program Manager, Google Earth Engine</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/keeping-earth-up-to-date-and-looking-great/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Building for Scale: Updates to Google Maps APIs Standard Plan</title>
		<link>https://googledata.org/google-maps/building-for-scale-updates-to-google-maps-apis-standard-plan/</link>
		<comments>https://googledata.org/google-maps/building-for-scale-updates-to-google-maps-apis-standard-plan/#comments</comments>
		<pubDate>Wed, 22 Jun 2016 22:51:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=0aa5ab747d15bb5d53686b324879571c</guid>
		<description><![CDATA[Eleven years after a developer first reverse-engineered a Google Map, there are more than three million location-informed apps and websites generating billions of requests daily, all powered by Google Maps APIs. From <a href="http://googlegeodevelopers.blogspot.com/2015/06/lyft-connects-drivers-and-riders-with.html">unicorns</a> to <a href="http://googlegeodevelopers.blogspot.com/2015/04/sun-surveyor-brings-augmented-reality.html">passion projects</a> to <a href="http://googleforwork.blogspot.com/search/label/Mapping%20a%20better%20world">public service</a>, the power of maps and location data is limited only by the creativity of developers.<br /><br />
The Internet landscape has dramatically shifted from desktops to mobile devices in the last decade, and as a result, our services have evolved to meet the needs of our developers and their users. More devices means exponentially more requests, and hundreds of millions of global users are just coming online. Therefore, today we are announcing a few updates to bring more simplicity and consistency to our <a href="https://developers.google.com/maps/pricing-and-plans/?utm_source=geoblog&#38;utm_medium=social&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=TBC">Standard Plan limits and pricing</a>.<br /><br />
As of June 22, 2016 we are making the following changes to the Google Maps APIs Standard Plan:<br /><br /><ol><li>We no longer support keyless access (any request that doesn't include an API key). Future product updates are only available for <a href="https://developers.google.com/maps/documentation/javascript/get-api-key?utm_source=geoblog&#38;utm_medium=social&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=TBC">requests made with an API key</a>. API keys allow us to contact developers when required and help us identify misbehaving implementations.</li>
<li>We have implemented a simple 25,000 map loads per day free limit to new Google Maps JavaScript API, Static Maps API, and Street View Image API implementations. The confusing 90-consecutive-day grace period for these APIs is being retired on October 12, 2016. With this change, developers can predictably plan for growth while media sites and US nonprofits can request more quota at no charge <a href="https://developers.google.com/maps/pricing-and-plans/?utm_source=geoblog&#38;utm_medium=social&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=TBC#nonprofit-and-news-media-organization-grants">via our dedicated support programs</a>.</li>
<li>We have reduced the daily map load maximum limit you can purchase for Google Maps JavaScript API, Static Maps API, and Street View Image API from 1,000,000 to 100,000 requests per API.* We believe higher-volume developers are best served with a <a href="https://developers.google.com/maps/premium/?utm_source=geoblog&#38;utm_medium=social&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=TBC">Premium Plan license</a>, which includes technical support and a Service Level Agreement, and with this change we've also created consistency between Standard Plan quotas across our maps and web service APIs.</li>
<li>We now count Google Maps JavaScript API client-side requests towards the daily limit of the associated web service API.*</li>
</ol><br />
The new policies will apply immediately to all Maps API implementations created on or after June 22nd, 2016.<br /><br />
Existing applications have been grandfathered based on their current usage to ensure that they continue to function both now and in the future. We will also be proactively contacting all existing API key users who, based on usage growth patterns, may be impacted in the future. If you&#8217;re an existing user, please take the time to read our <a href="https://developers.google.com/maps/pricing-and-plans/standard-plan-2016-update?utm_source=geoblog&#38;utm_medium=social&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=TBC">Policy Update for Standard Plan summary</a> for details on how each of these changes might affect your implementation.<br /><br /><i>Posted by Ken Hoetmer, Product Manager, Google Maps APIs</i><br /><span><i><br /></i></span> <span><i>* <a href="https://developers.google.com/maps/pricing-and-plans/standard-plan-2016-update?utm_source=geoblog&#38;utm_medium=social&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&#38;utm_content=TBC">Exceptions may apply</a> for implementations that were exceeding new quotas prior to June 22, 2016.</i></span>]]></description>
				<content:encoded><![CDATA[Eleven years after a developer first reverse-engineered a Google Map, there are more than three million location-informed apps and websites generating billions of requests daily, all powered by Google Maps APIs. From <a href="http://googlegeodevelopers.blogspot.com/2015/06/lyft-connects-drivers-and-riders-with.html">unicorns</a> to <a href="http://googlegeodevelopers.blogspot.com/2015/04/sun-surveyor-brings-augmented-reality.html">passion projects</a> to <a href="http://googleforwork.blogspot.com/search/label/Mapping%20a%20better%20world">public service</a>, the power of maps and location data is limited only by the creativity of developers.<br />
<br />
The Internet landscape has dramatically shifted from desktops to mobile devices in the last decade, and as a result, our services have evolved to meet the needs of our developers and their users. More devices means exponentially more requests, and hundreds of millions of global users are just coming online. Therefore, today we are announcing a few updates to bring more simplicity and consistency to our <a href="https://developers.google.com/maps/pricing-and-plans/?utm_source=geoblog&amp;utm_medium=social&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=TBC">Standard Plan limits and pricing</a>.<br />
<br />
As of June 22, 2016 we are making the following changes to the Google Maps APIs Standard Plan:<br />
<br />
<ol>
<li>We no longer support keyless access (any request that doesn't include an API key). Future product updates are only available for <a href="https://developers.google.com/maps/documentation/javascript/get-api-key?utm_source=geoblog&amp;utm_medium=social&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=TBC">requests made with an API key</a>. API keys allow us to contact developers when required and help us identify misbehaving implementations.</li>
<li>We have implemented a simple 25,000 map loads per day free limit to new Google Maps JavaScript API, Static Maps API, and Street View Image API implementations. The confusing 90-consecutive-day grace period for these APIs is being retired on October 12, 2016. With this change, developers can predictably plan for growth while media sites and US nonprofits can request more quota at no charge <a href="https://developers.google.com/maps/pricing-and-plans/?utm_source=geoblog&amp;utm_medium=social&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=TBC#nonprofit-and-news-media-organization-grants">via our dedicated support programs</a>.</li>
<li>We have reduced the daily map load maximum limit you can purchase for Google Maps JavaScript API, Static Maps API, and Street View Image API from 1,000,000 to 100,000 requests per API.* We believe higher-volume developers are best served with a <a href="https://developers.google.com/maps/premium/?utm_source=geoblog&amp;utm_medium=social&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=TBC">Premium Plan license</a>, which includes technical support and a Service Level Agreement, and with this change we've also created consistency between Standard Plan quotas across our maps and web service APIs.</li>
<li>We now count Google Maps JavaScript API client-side requests towards the daily limit of the associated web service API.*</li>
</ol>
<br />
The new policies will apply immediately to all Maps API implementations created on or after June 22nd, 2016.<br />
<br />
Existing applications have been grandfathered based on their current usage to ensure that they continue to function both now and in the future. We will also be proactively contacting all existing API key users who, based on usage growth patterns, may be impacted in the future. If you’re an existing user, please take the time to read our <a href="https://developers.google.com/maps/pricing-and-plans/standard-plan-2016-update?utm_source=geoblog&amp;utm_medium=social&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=TBC">Policy Update for Standard Plan summary</a> for details on how each of these changes might affect your implementation.<br />
<br />
<i>Posted by Ken Hoetmer, Product Manager, Google Maps APIs</i><br />
<span style="font-size: x-small;"><i><br />
</i></span> <span style="font-size: x-small;"><i>* <a href="https://developers.google.com/maps/pricing-and-plans/standard-plan-2016-update?utm_source=geoblog&amp;utm_medium=social&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost&amp;utm_content=TBC">Exceptions may apply</a> for implementations that were exceeding new quotas prior to June 22, 2016.</i></span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/building-for-scale-updates-to-google-maps-apis-standard-plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Learn about developing geo applications over coffee with Ankur Kotwal and Ken Hoetmer</title>
		<link>https://googledata.org/google-maps/learn-about-developing-geo-applications-over-coffee-with-ankur-kotwal-and-ken-hoetmer/</link>
		<comments>https://googledata.org/google-maps/learn-about-developing-geo-applications-over-coffee-with-ankur-kotwal-and-ken-hoetmer/#comments</comments>
		<pubDate>Tue, 21 Jun 2016 16:19:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=755f0ce091d0a152fcadb75c94d7b224</guid>
		<description><![CDATA[<span><i>Posted by Laurence Moroney, Developer Advocate at Google</i></span><br /><br />
While at Google I/O, I had a chance to sit down for a cup of coffee with Ankur Kotwal, Developer Advocate at Google and Ken Hoetmer, Product Manager for the Google Maps APIs. Both had an interesting perspective on how maps have evolved and where they are headed.<br /><br />
In Ankur&#8217;s session we discussed technologies beyond the visualization aspects of maps, including the Directions API, Places API and Roads API. He highlighted innovative ways developers are using Google Maps APIs including VR, marker clustering and heatmaps. We also spoke about <a href="https://santatracker.google.com/#village">Santa Tracker</a>, which Ankur has been a part of for four years (he also revealed what Santa likes to do during his time off). Ankur announced the new Google Maps APIs <a href="https://developers.google.com/maps/beta/">Beta program</a>, so if you have not signed-up, head over to the site to apply.<br /><br /><div><div><b>Learn about developing Geo applications over Coffee with Ankur Kotwal</b></div></div><div></div><br />
While speaking with Ken, we discussed how he started working with maps and the Google Maps API as well as how he eventually landed at Google on the Sydney maps team. Ken spoke about how use cases have evolved from interactive maps to more powerful applications and insights driven by location information made available through the APIs. He shared details about some newer APIs including native <a href="https://developers.google.com/places/ios-api/">iOS</a> and <a href="https://developers.google.com/places/android-api/">Android</a> Places API, <a href="https://developers.google.com/maps/documentation/roads/intro">Roads API</a>, <a href="https://developers.google.com/maps/documentation/directions/">Directions API</a> and Predictive Travel Time (estimating travel time and routes based on now or in the future). He also highlighted some notable location-based intelligence use cases including Uber, GoJek, Dash Labs and the city of Sydney. <br /><b><br /></b> <b>Google Maps APIs and Coffee with Product Manager Ken Hoetmer</b><br /><div></div><br /><br /><br /><br /><br /><br /><br /><br /><table><tbody><tr><td><div><img alt="author image" border="0" src="https://4.bp.blogspot.com/-Civ0vs_fVv4/V4ASp64f_aI/AAAAAAAAAgY/IE-dp1TlEPIqsaGC8RxYpvEGHAGe7gWSACLcB/s1600/laurence.jpg"></div></td> <td>About Laurence: <em>I am a Developer Advocate at Google, working on mobile services, specializing in cross-platform developer technologies. As the host of 'Coffee with a Googler' on the Google Developers channel I&#8217;m able to meet with some of those most creative and inspiring developers at Google and learn about the projects they&#8217;re leading. When I&#8217;m not Googling, I&#8217;m involved in many things, including working on the revival comics for the Stargate TV shows, and enjoying the geek cred that this brings.</em></td> </tr></tbody></table><br />]]></description>
				<content:encoded><![CDATA[<span class="post-author"><i>Posted by Laurence Moroney, Developer Advocate at Google</i></span><br />
<br />
While at Google I/O, I had a chance to sit down for a cup of coffee with Ankur Kotwal, Developer Advocate at Google and Ken Hoetmer, Product Manager for the Google Maps APIs. Both had an interesting perspective on how maps have evolved and where they are headed.<br />
<br />
In Ankur’s session we discussed technologies beyond the visualization aspects of maps, including the Directions API, Places API and Roads API. He highlighted innovative ways developers are using Google Maps APIs including VR, marker clustering and heatmaps. We also spoke about <a href="https://santatracker.google.com/#village">Santa Tracker</a>, which Ankur has been a part of for four years (he also revealed what Santa likes to do during his time off). Ankur announced the new Google Maps APIs <a href="https://developers.google.com/maps/beta/">Beta program</a>, so if you have not signed-up, head over to the site to apply.<br />
<br />
<div style="text-align: center;"><div style="text-align: left;"><b>Learn about developing Geo applications over Coffee with Ankur Kotwal</b></div></div><div style="text-align: center;"><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/IJTURPro6tc?rel=0" frameborder="0" allowfullscreen></iframe></div><br />
While speaking with Ken, we discussed how he started working with maps and the Google Maps API as well as how he eventually landed at Google on the Sydney maps team. Ken spoke about how use cases have evolved from interactive maps to more powerful applications and insights driven by location information made available through the APIs. He shared details about some newer APIs including native <a href="https://developers.google.com/places/ios-api/">iOS</a> and <a href="https://developers.google.com/places/android-api/">Android</a> Places API, <a href="https://developers.google.com/maps/documentation/roads/intro">Roads API</a>, <a href="https://developers.google.com/maps/documentation/directions/">Directions API</a> and Predictive Travel Time (estimating travel time and routes based on now or in the future). He also highlighted some notable location-based intelligence use cases including Uber, GoJek, Dash Labs and the city of Sydney. <br />
<b><br />
</b> <b>Google Maps APIs and Coffee with Product Manager Ken Hoetmer</b><br />
<div style="text-align: center;"><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/qZF1_4TRGzo?rel=0" frameborder="0" allowfullscreen></iframe></div><br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<table><tbody>
<tr> <td style="width: 80px;"><div class="separator" style="clear: both; text-align: center;"><img alt="author image" border="0" src="https://4.bp.blogspot.com/-Civ0vs_fVv4/V4ASp64f_aI/AAAAAAAAAgY/IE-dp1TlEPIqsaGC8RxYpvEGHAGe7gWSACLcB/s1600/laurence.jpg" style="border-radius: 50%; width: 80px;" /></div></td> <td>About Laurence: <em>I am a Developer Advocate at Google, working on mobile services, specializing in cross-platform developer technologies. As the host of 'Coffee with a Googler' on the Google Developers channel I’m able to meet with some of those most creative and inspiring developers at Google and learn about the projects they’re leading. When I’m not Googling, I’m involved in many things, including working on the revival comics for the Stargate TV shows, and enjoying the geek cred that this brings.</em></td> </tr>
</tbody></table><br />
]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/learn-about-developing-geo-applications-over-coffee-with-ankur-kotwal-and-ken-hoetmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Going #SolarforSolstice with Project Sunroof and the Sierra Club</title>
		<link>https://googledata.org/google-earth/going-solarforsolstice-with-project-sunroof-and-the-sierra-club/</link>
		<comments>https://googledata.org/google-earth/going-solarforsolstice-with-project-sunroof-and-the-sierra-club/#comments</comments>
		<pubDate>Mon, 20 Jun 2016 18:57:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=70b7dab2145cf3a6607dde759b6da277</guid>
		<description><![CDATA[Join us in celebrating the start of summer in the Northern Hemisphere&#8212;the longest and brightest day of the year, when the Northern Hemisphere is tilted towards the sun more than any other day. Among the many gifts that summer brings&#8212;longer days, warm walks, and late evening dinners&#8212;solar energy is a largely underutilized benefit.<br /><br />The sun delivers more energy to Earth in one hour than civilization uses in a whole year. On this long Summer Solstice day, solar panels on your roof could generate enough energy to run your refrigerator for almost two weeks&#8212;that&#8217;s 50 percent more energy than the average day.  Yet globally only about 1 percent of our energy comes from solar. So today, Project Sunroof teamed up with the Sierra Club to share some tips on how you can better use the sun to generate energy and protect our Earth. <br /><br /><span><span><img alt="sunroof-gif-1.gif" height="384" src="https://lh4.googleusercontent.com/7SPYqUNTcamWZHHQFxcApirAn3nlqQryVVc_LAO1nVFh_nItx7B8ghpke9YXseuShF9-wa5LkG7v76DxA811Q7c22xzYX3rvJmhfGwsn_9IZt31a8-AuwPYQD87Y_rB5iYesnPrM" width="682"></span></span><br /><br />Solar energy is one of the cleanest energy sources available, and the U.S. has abundant solar resources. <a href="http://g.co/sunroof">Project Sunroof</a> is our attempt to make going solar a little easier. Homeowners can search their property and get a solar recommendation based on roof size, the amount of sun that hits it throughout the year, weather, applicable government incentives, and electricity rates and bill.<br /><br /><span><span><img alt="sunroof-gif-2.gif" height="384" src="https://lh3.googleusercontent.com/Sgti7TCy3IVAXyTt_5uz4a5oRiOBUJBX4_1m_v2Yvd-AjFZKvEDcunP3JRBbIv2FvOLcUrld1TQio9J3QC38_R9x3YcJgGCZdISBnIMEPhgz2FB0NSIBmyfpwJO2rV7O4QaHLaXh" width="682"></span></span><br /><br />Whether or not solar is an option for you, the <a href="http://sierraclub.org/?utm_source=google&#38;utm_medium=blog&#38;utm_content=20160620ProjectSunroof&#38;utm_campaign=businesspartnerships">Sierra Club</a> has some additional tips on how to use the power of the sun and other forms of clean energy to slow the impacts of climate change. Check out <a href="http://www.sierraclub.org/ready-for-100?utm_source=google&#38;utm_medium=blog&#38;utm_content=20160620ProjectSunroof&#38;utm_campaign=businesspartnerships">Ready for 100</a> to learn more about how you can help us achieve 100% clean, renewable energy across the United States.<br /><span><span><img alt="SUN-6.gif" height="384" src="https://lh3.googleusercontent.com/o1fjzEyRE7JYooqRkXo2h7c325afEC_UVYomxYjQCYspBOdFs50JWOMtpE4Rv-QtrtCjAXqfHReK8tKkE3aWJANA7CQQ7Yy8yqJzGjIOJMVufJXvXwyHskieenTJu9_mdxhZDaAA" width="682"></span></span><br /><br /><br /><br />Posted by Carl Elkin, Founder of Sunroof]]></description>
				<content:encoded><![CDATA[Join us in celebrating the start of summer in the Northern Hemisphere—the longest and brightest day of the year, when the Northern Hemisphere is tilted towards the sun more than any other day. Among the many gifts that summer brings—longer days, warm walks, and late evening dinners—solar energy is a largely underutilized benefit.<br /><br />The sun delivers more energy to Earth in one hour than civilization uses in a whole year. On this long Summer Solstice day, solar panels on your roof could generate enough energy to run your refrigerator for almost two weeks—that’s 50 percent more energy than the average day.  Yet globally only about 1 percent of our energy comes from solar. So today, Project Sunroof teamed up with the Sierra Club to share some tips on how you can better use the sun to generate energy and protect our Earth. <br /><br /><span id="docs-internal-guid-3e9a6b8f-6f19-3936-5270-19a96099936b"><span style="font-family: Arial; font-size: 14.6667px; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"><img alt="sunroof-gif-1.gif" height="384" src="https://lh4.googleusercontent.com/7SPYqUNTcamWZHHQFxcApirAn3nlqQryVVc_LAO1nVFh_nItx7B8ghpke9YXseuShF9-wa5LkG7v76DxA811Q7c22xzYX3rvJmhfGwsn_9IZt31a8-AuwPYQD87Y_rB5iYesnPrM" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="682" /></span></span><br /><br />Solar energy is one of the cleanest energy sources available, and the U.S. has abundant solar resources. <a href="http://g.co/sunroof">Project Sunroof</a> is our attempt to make going solar a little easier. Homeowners can search their property and get a solar recommendation based on roof size, the amount of sun that hits it throughout the year, weather, applicable government incentives, and electricity rates and bill.<br /><br /><span id="docs-internal-guid-3e9a6b8f-6f19-63ad-54be-8200f826b7fc"><span style="font-family: Arial; font-size: 14.6667px; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"><img alt="sunroof-gif-2.gif" height="384" src="https://lh3.googleusercontent.com/Sgti7TCy3IVAXyTt_5uz4a5oRiOBUJBX4_1m_v2Yvd-AjFZKvEDcunP3JRBbIv2FvOLcUrld1TQio9J3QC38_R9x3YcJgGCZdISBnIMEPhgz2FB0NSIBmyfpwJO2rV7O4QaHLaXh" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="682" /></span></span><br /><br />Whether or not solar is an option for you, the <a href="http://sierraclub.org/?utm_source=google&amp;utm_medium=blog&amp;utm_content=20160620ProjectSunroof&amp;utm_campaign=businesspartnerships">Sierra Club</a> has some additional tips on how to use the power of the sun and other forms of clean energy to slow the impacts of climate change. Check out <a href="http://www.sierraclub.org/ready-for-100?utm_source=google&amp;utm_medium=blog&amp;utm_content=20160620ProjectSunroof&amp;utm_campaign=businesspartnerships">Ready for 100</a> to learn more about how you can help us achieve 100% clean, renewable energy across the United States.<br /><span id="docs-internal-guid-3e9a6b8f-6f19-8d81-e1a2-1f513d45c86e"><span style="font-family: Arial; font-size: 14.6667px; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"><img alt="SUN-6.gif" height="384" src="https://lh3.googleusercontent.com/o1fjzEyRE7JYooqRkXo2h7c325afEC_UVYomxYjQCYspBOdFs50JWOMtpE4Rv-QtrtCjAXqfHReK8tKkE3aWJANA7CQQ7Yy8yqJzGjIOJMVufJXvXwyHskieenTJu9_mdxhZDaAA" style="border: none; transform: rotate(0rad);" width="682" /></span></span><br /><br /><br /><br />Posted by Carl Elkin, Founder of Sunroof]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/going-solarforsolstice-with-project-sunroof-and-the-sierra-club/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>More descriptive JavaScript console error messages</title>
		<link>https://googledata.org/google-maps/more-descriptive-javascript-console-error-messages/</link>
		<comments>https://googledata.org/google-maps/more-descriptive-javascript-console-error-messages/#comments</comments>
		<pubDate>Thu, 16 Jun 2016 17:49:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=954097ba33150a87c5832e18c4d8dc72</guid>
		<description><![CDATA[<span><i>Posted by Kosuke Mizubayashi, Technical Solutions Engineer at Google</i></span><br /><br />
Over the past few months we've rolled out several JavaScript console error message improvements designed to help developers implement Google Maps JavaScript API into web apps. Our goal was to:<br /><br /><ul><li>Give developers more descriptive error messages</li>
<li>Provide developers with a suggested solution to resolve the error</li>
<li>Avoid popups for displaying error messages</li>
<li>Create a positive experience for end-users in the event an error occurs</li>
</ul><br /><i>How do developers usually use the JavaScript console? When? Why?</i><br />
Web developers use browser tools to develop and debug their applications. They can find various messages in the JavaScript console to which their application, libraries or APIs write. For users of our Google Maps JavaScript API, we have returned error messages in the JavaScript console for some types of Maps API errors. But, these messages were often not descriptive enough for web developers to investigate the issue and find solutions.<br /><i><br /></i> <i>What happened when users saw the old error messages?</i><br />
Our previous popup error messages showed up on the top of the web page. This JavaScript alert prevented users from interacting with the page until the &#8220;OK&#8221; button was clicked, even if they were not interacting with the map. We served 4 basic error messages that pointed to the general troubleshooting page of our website.<br /><div><span><img alt="Error_message.png" height="248" src="https://lh5.googleusercontent.com/NmSY8yUacuew5YMC3ppa2Qi7DMNY0wKcxaPpkXni5WE02WCJSHqu-79gg2SY9B7SBW3EyTcAIci32fxqEsPmLdJkCFI2ePqFhGiQEJzYS73Qe_3h3R9OZXQUgEgu3lXDF8I5ZGZp" width="481"></span></div><span></span><br /><i>What do developers and users see now?</i><br />
We now display 21 different error messages in the console &#8212;you can see the full list in our <a href="https://developers.google.com/maps/documentation/javascript/error-messages">developer documentation</a>. In addition, we've provided direct links from specific errors to self-service solutions on the developer site. We've also simplified the error messages displayed to end users -the improved error appears in the map div itself, allowing users to interact with the rest of the page even if the map load fails.<br /><div><span><img alt="JS Console error message.png" height="224" src="https://lh5.googleusercontent.com/iEk9yiijP-HJWPDltbINVIhT3mgjZcEhqRnGV1-kQMX26ZNgAFYMhPKj_emWcYBVSyfAAuqbPHhL3SHvFcfUsWmd06TAVz9o8rlY6MxNBfkoKFGdVY1SA0GY-zhLurtd6_TpFIOc" width="640"></span></div><span></span><br />
We hope these changes will improve your implementation and interactions with your end users.<br /><br /><br /><table><tbody><tr><td><div><img border="0" src="https://lh5.googleusercontent.com/vorm2JsnekXrw6v-WAdXEepnBqZnQranx0oybLbeMCDphHyoTlZso8N-6beTMMRmyu1nDARge5V1MA3RY64kiGlDYew3jmGu81bV-s0vZxWwvQ1qDro80sD12Zwpv7OAjiqNtnqW" alt="author image"></div></td> <td>About Kosuke: <em>I&#8217;ve been a Technical Solutions Engineer at Google for 6 years. I enjoy working on the Google Maps APIs because there is always a new discovery on maps. Outside of Google, I love beer, especially after skiing in the mountains.</em></td> </tr></tbody></table>]]></description>
				<content:encoded><![CDATA[<span class="post-author"><i>Posted by Kosuke Mizubayashi, Technical Solutions Engineer at Google</i></span><br />
<br />
Over the past few months we've rolled out several JavaScript console error message improvements designed to help developers implement Google Maps JavaScript API into web apps. Our goal was to:<br />
<br />
<ul><li>Give developers more descriptive error messages</li>
<li>Provide developers with a suggested solution to resolve the error</li>
<li>Avoid popups for displaying error messages</li>
<li>Create a positive experience for end-users in the event an error occurs</li>
</ul><br />
<i>How do developers usually use the JavaScript console? When? Why?</i><br />
Web developers use browser tools to develop and debug their applications. They can find various messages in the JavaScript console to which their application, libraries or APIs write. For users of our Google Maps JavaScript API, we have returned error messages in the JavaScript console for some types of Maps API errors. But, these messages were often not descriptive enough for web developers to investigate the issue and find solutions.<br />
<i><br />
</i> <i>What happened when users saw the old error messages?</i><br />
Our previous popup error messages showed up on the top of the web page. This JavaScript alert prevented users from interacting with the page until the “OK” button was clicked, even if they were not interacting with the map. We served 4 basic error messages that pointed to the general troubleshooting page of our website.<br />
<div class="separator" style="clear: both; text-align: center;"><span style="background-color: white; color: #222222; font-family: &quot;arial&quot;; font-size: 12.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="Error_message.png" height="248" src="https://lh5.googleusercontent.com/NmSY8yUacuew5YMC3ppa2Qi7DMNY0wKcxaPpkXni5WE02WCJSHqu-79gg2SY9B7SBW3EyTcAIci32fxqEsPmLdJkCFI2ePqFhGiQEJzYS73Qe_3h3R9OZXQUgEgu3lXDF8I5ZGZp" style="border: none; transform: rotate(0rad);" width="481" /></span></div><span id="docs-internal-guid-b741fd71-5a34-719d-0508-2a80ebcaedd7"></span><br />
<i>What do developers and users see now?</i><br />
We now display 21 different error messages in the console —you can see the full list in our <a href="https://developers.google.com/maps/documentation/javascript/error-messages">developer documentation</a>. In addition, we've provided direct links from specific errors to self-service solutions on the developer site. We've also simplified the error messages displayed to end users -the improved error appears in the map div itself, allowing users to interact with the rest of the page even if the map load fails.<br />
<div class="separator" style="clear: both; text-align: center;"><span style="background-color: white; color: #222222; font-family: &quot;arial&quot;; font-size: 12.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="JS Console error message.png" height="224" src="https://lh5.googleusercontent.com/iEk9yiijP-HJWPDltbINVIhT3mgjZcEhqRnGV1-kQMX26ZNgAFYMhPKj_emWcYBVSyfAAuqbPHhL3SHvFcfUsWmd06TAVz9o8rlY6MxNBfkoKFGdVY1SA0GY-zhLurtd6_TpFIOc" style="border: none; transform: rotate(0rad);" width="640" /></span></div><span id="docs-internal-guid-b741fd71-5a35-392f-cff9-836df9633c1e"></span><br />
We hope these changes will improve your implementation and interactions with your end users.<br />
<br />
<br />
<table><tbody>
<tr> <td style="width: 80px;"><div class="separator" style="clear: both; text-align: center;"><img border="0" src="https://lh5.googleusercontent.com/vorm2JsnekXrw6v-WAdXEepnBqZnQranx0oybLbeMCDphHyoTlZso8N-6beTMMRmyu1nDARge5V1MA3RY64kiGlDYew3jmGu81bV-s0vZxWwvQ1qDro80sD12Zwpv7OAjiqNtnqW" style="border-radius: 50%; width: 80px;" alt="author image" /></div></td> <td>About Kosuke: <em>I’ve been a Technical Solutions Engineer at Google for 6 years. I enjoy working on the Google Maps APIs because there is always a new discovery on maps. Outside of Google, I love beer, especially after skiing in the mountains.</em></td> </tr>
</tbody></table>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/more-descriptive-javascript-console-error-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Google I/O session live: Streamlining developer experiences with the Google Maps APIs</title>
		<link>https://googledata.org/google-maps/google-io-session-live-streamlining-developer-experiences-with-the-google-maps-apis/</link>
		<comments>https://googledata.org/google-maps/google-io-session-live-streamlining-developer-experiences-with-the-google-maps-apis/#comments</comments>
		<pubDate>Tue, 14 Jun 2016 18:18:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=a5689a442414bfe13f8c1bf068053c85</guid>
		<description><![CDATA[<span><i>Posted by Ankur Kotwal, Developer Advocate at Google</i></span><br /><br />
While at Google I/O, Laurence Moroney and I had a chance to present our session titled &#8216;Streamlining developer experiences with the Google Maps APIs&#8217;. We&#8217;re pleased to share it more broadly for those of you who were not able to be there in person:<br /><div></div><i>Streamlining developer experiences with the Google Maps APIs</i><br />
The Google Maps APIs provide a seamless experience for developers of all levels. Some want to offer a map or directions but don't want to build these things themselves; this can be achieved with just a few lines of code. Other developers prefer to integrate natively with off-the-shelf widgets. Finally, some developers want complete control over every aspect of the presentation. This session highlights the Maps APIs that represent the full gamut of the developer experiences, enabling you to get going immediately and scale as necessary. You'll see how widgets and services can be added over time with a suite of Maps APIs, services and libraries.<br /><div><span><img height="480" src="https://lh5.googleusercontent.com/HsxPDDM7ucrxoto1Aq96WWUrzrLqP57KLb6I65F-QuCAdbz-rFgGezAIM9-0gvy-5GSGK9R4AQNtHdFEgJwJocpGBg77ewR9BlguFcwsvNEIKizpTjoH-H4cwzKsYLe0ldZwE_QT" width="640"></span></div><br /><br /><br /><br /><br /><br /><table><tbody><tr><td><div><img border="0" src="https://lh6.googleusercontent.com/fFbsXRqdAUCsvJfx1QCUijH_QlBo0hpeyvMi7HokU8N8rhjyduTHq_QojvMKqbECNZiH0-rM7FT8ZKTIFYDydoUf3Rh6oEc1fVP-IanZEpCBskRMGWaBup6Qms_a5R5k0dqfMdV9" alt="author image"></div></td> <td>About Ankur: <em>I am a Developer Advocate at Google experienced in building on Android and the Google Maps API. I am based out of the Google Sydney office and lead the Geo Developer Relations &#38; Next Billion Users Developer Relations team to inspire developers towards building on the Google developer platform. When I&#8217;m not at Google inspiring other developers, I enjoy spending time with my kids.</em></td> </tr></tbody></table>]]></description>
				<content:encoded><![CDATA[<span class="post-author"><i>Posted by Ankur Kotwal, Developer Advocate at Google</i></span><br />
<br />
While at Google I/O, Laurence Moroney and I had a chance to present our session titled ‘Streamlining developer experiences with the Google Maps APIs’. We’re pleased to share it more broadly for those of you who were not able to be there in person:<br />
<div class="separator" style="clear: both; text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/WJY2tGVQDGQ" width="560"></iframe></div><i>Streamlining developer experiences with the Google Maps APIs</i><br />
The Google Maps APIs provide a seamless experience for developers of all levels. Some want to offer a map or directions but don't want to build these things themselves; this can be achieved with just a few lines of code. Other developers prefer to integrate natively with off-the-shelf widgets. Finally, some developers want complete control over every aspect of the presentation. This session highlights the Maps APIs that represent the full gamut of the developer experiences, enabling you to get going immediately and scale as necessary. You'll see how widgets and services can be added over time with a suite of Maps APIs, services and libraries.<br />
<div class="separator" style="clear: both; text-align: center;"><span style="background-color: white; color: #212121; font-family: &quot;arial&quot;; font-size: 13.3333px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img height="480" src="https://lh5.googleusercontent.com/HsxPDDM7ucrxoto1Aq96WWUrzrLqP57KLb6I65F-QuCAdbz-rFgGezAIM9-0gvy-5GSGK9R4AQNtHdFEgJwJocpGBg77ewR9BlguFcwsvNEIKizpTjoH-H4cwzKsYLe0ldZwE_QT" style="border: none; transform: rotate(0rad);" width="640" /></span></div><br />
<br />
<br />
<br />
<br><br><table><tbody>
<tr> <td style="width: 80px;"><div class="separator" style="clear: both; text-align: center;"><img border="0" src="https://lh6.googleusercontent.com/fFbsXRqdAUCsvJfx1QCUijH_QlBo0hpeyvMi7HokU8N8rhjyduTHq_QojvMKqbECNZiH0-rM7FT8ZKTIFYDydoUf3Rh6oEc1fVP-IanZEpCBskRMGWaBup6Qms_a5R5k0dqfMdV9" style="border-radius: 50%; width: 80px;" alt="author image" /></div></td> <td>About Ankur: <em>I am a Developer Advocate at Google experienced in building on Android and the Google Maps API. I am based out of the Google Sydney office and lead the Geo Developer Relations &amp; Next Billion Users Developer Relations team to inspire developers towards building on the Google developer platform. When I’m not at Google inspiring other developers, I enjoy spending time with my kids.</em></td> </tr>
</tbody></table>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/google-io-session-live-streamlining-developer-experiences-with-the-google-maps-apis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Introducing the Google Maps APIs Udacity course</title>
		<link>https://googledata.org/google-maps/introducing-the-google-maps-apis-udacity-course/</link>
		<comments>https://googledata.org/google-maps/introducing-the-google-maps-apis-udacity-course/#comments</comments>
		<pubDate>Wed, 08 Jun 2016 21:46:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=728fc14be6155b8d314f3983454213e9</guid>
		<description><![CDATA[<span><i>Posted by Emily Keller, Technical Program Manager for Google Maps APIs</i></span><br /><br />
The Google Maps Operations team gets to work with thousands of developers each year to create great user experiences and powerful analytics built on maps and location data. We drew from these experiences to create a brand new Google Maps APIs course, in collaboration with Udacity, that teaches developers best practices when using our web APIs.<br /><div><span><img alt="Google Maps 03.jpg" height="351" src="https://lh4.googleusercontent.com/jFlnn2Z6TArXeRWGO70wIN7fa3XCTxlixa3BOBAFqqATP-MCsEgUkHPb4fmoltVPcPDH5DwzBxB42DUidic-Nrrr9QEXye7dhghq_tIJ15ryD13W88k83q0azZ9ab1J3dLV78PhY" width="624"></span></div><span></span><br />
The <a href="https://www.udacity.com/course/google-maps-apis--ud864">new course</a>, available today for free, gives you step-by-step tutorials that demonstrate how to integrate maps and location features into your website, and how to get useful location related data using various Web Service APIs.<br /><br />
You&#8217;ll walk through building a real-estate listings site using a uniquely styled Google map, data visualization, and street view panoramas. You&#8217;ll practice developing location-related features: calculate distance between locations, get directions, and view places of interest data.<br /><div></div>You&#8217;ll also see other examples of Google Maps APIs in action and learn how to secure and monitor your deployment using the Google APIs Console. At the end of the course, you&#8217;ll have built your first map-enabled site and be ready to create your own projects using location data, services, and maps!<br /><br />
Whether you&#8217;re new to Google Maps APIs or just want a refresher, <a href="https://www.udacity.com/course/google-maps-apis--ud864">head over to Udacity</a> to learn about how to start adding location features and map visualizations into your websites, today!<br /><i><br /></i> <br /><br /><br /><table><tbody><tr><td><div><img border="0" src="https://2.bp.blogspot.com/-HXW7MUSlA2s/V4ASaJYHMuI/AAAAAAAAAgU/aUlmQwmKmhY6dLLyDQT7o89NfEsZ0aldACLcB/s1600/emily.jpg" alt="author image"></div></td> <td>About Emily: <em>I happily joined Google in September, 2015. I love working with the Google Maps APIs because they are easy to build with and enable end users to have an intuitive, familiar experience in any site or app. Outside of Google I like to play Zelda, eat pizza and drink coffee with my dog.</em></td> </tr></tbody></table>]]></description>
				<content:encoded><![CDATA[<span class="post-author"><i>Posted by Emily Keller, Technical Program Manager for Google Maps APIs</i></span><br />
<br />
The Google Maps Operations team gets to work with thousands of developers each year to create great user experiences and powerful analytics built on maps and location data. We drew from these experiences to create a brand new Google Maps APIs course, in collaboration with Udacity, that teaches developers best practices when using our web APIs.<br />
<div class="separator" style="clear: both; text-align: center;"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="Google Maps 03.jpg" height="351" src="https://lh4.googleusercontent.com/jFlnn2Z6TArXeRWGO70wIN7fa3XCTxlixa3BOBAFqqATP-MCsEgUkHPb4fmoltVPcPDH5DwzBxB42DUidic-Nrrr9QEXye7dhghq_tIJ15ryD13W88k83q0azZ9ab1J3dLV78PhY" style="border: none; transform: rotate(0rad);" width="624" /></span></div><span id="docs-internal-guid-6ea80aaf-2c7f-39d8-99a6-505d1b2b51d1"></span><br />
The <a href="https://www.udacity.com/course/google-maps-apis--ud864">new course</a>, available today for free, gives you step-by-step tutorials that demonstrate how to integrate maps and location features into your website, and how to get useful location related data using various Web Service APIs.<br />
<br />
You’ll walk through building a real-estate listings site using a uniquely styled Google map, data visualization, and street view panoramas. You’ll practice developing location-related features: calculate distance between locations, get directions, and view places of interest data.<br />
<div class="separator" style="clear: both; text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/-uXESF89wEk" width="560"></iframe></div>You’ll also see other examples of Google Maps APIs in action and learn how to secure and monitor your deployment using the Google APIs Console. At the end of the course, you’ll have built your first map-enabled site and be ready to create your own projects using location data, services, and maps!<br />
<br />
Whether you’re new to Google Maps APIs or just want a refresher, <a href="https://www.udacity.com/course/google-maps-apis--ud864">head over to Udacity</a> to learn about how to start adding location features and map visualizations into your websites, today!<br />
<i><br />
</i> <br />
<br />
<br />
<table><tbody>
<tr> <td style="width: 80px;"><div class="separator" style="clear: both; text-align: center;"><img border="0" src="https://2.bp.blogspot.com/-HXW7MUSlA2s/V4ASaJYHMuI/AAAAAAAAAgU/aUlmQwmKmhY6dLLyDQT7o89NfEsZ0aldACLcB/s1600/emily.jpg" style="border-radius: 50%; width: 80px;" alt="author image" /></div></td> <td>About Emily: <em>I happily joined Google in September, 2015. I love working with the Google Maps APIs because they are easy to build with and enable end users to have an intuitive, familiar experience in any site or app. Outside of Google I like to play Zelda, eat pizza and drink coffee with my dog.</em></td> </tr>
</tbody></table>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/introducing-the-google-maps-apis-udacity-course/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Google I/O session live: Understand your Place in this world</title>
		<link>https://googledata.org/google-maps/google-io-session-live-understand-your-place-in-this-world/</link>
		<comments>https://googledata.org/google-maps/google-io-session-live-understand-your-place-in-this-world/#comments</comments>
		<pubDate>Tue, 07 Jun 2016 20:57:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=096fc26afbbbbce5fee1b425b9b5b832</guid>
		<description><![CDATA[<span><i>Posted by Florian Bertele, Product Manager on the Google Maps APIs team</i></span><br /><br />
At Google I/O, Ravi Palanki, Android Place API technical lead and I presented our session titled &#8216;Understand your Place in this world&#8217;. Even if you were not able to attend Google I/O in person, you can now watch our session:<br /><div>
</div>
<i>Understand your Place in this world</i><br />
Humans navigate a world made up of places with names, addresses and phone numbers&#8212;not lat/long coordinates. The Google Places API enables an app or website to present location data to users in a human-centered fashion. In this session we shared  how you can use the Places API to discover your environment. I walked the audience through the main use cases and Places API functionalities, across mobile and web. We also showed off some newly-released mobile widgets, and Ravi did a deep-dive into the benefits of the mobile platform, such as optimization for mobile device battery life and increased device accuracy. This session is a great starting point to learn how the Places API can make all your apps -- not just map-centric ones -- smarter.<br /><span><img alt="IMG_20160519_093436.jpg" height="480" src="https://lh4.googleusercontent.com/sQYviQqwJpRbV3Pm3IzlepGaeWuRqbOIdOM4nR0oRuZu_CsVnSnVTJyG_s3ZBhH4MXgRqMo3PCgKXLL-4iACKhX-Tx5oxrDTCgc5jDAnci-N1ijKMD3W3qe1ZLDfbcn3gFu-n0Dk" width="640"></span><span></span><br />
With the <a href="https://developers.google.com/places/">Google Places API</a> you get data from the same database used by Google Maps and Google+ Local. Places features more than 100 million businesses and points of interest that are updated frequently through owner-verified listings and user-moderated contributions.<br /><ul><li>Use the power of mobile to give your users contextual information about where they are, when they&#8217;re there with the <a href="https://developers.google.com/places/android-api/">Places API for Android</a>.</li>
<li><a href="https://developers.google.com/places/web-service/search">Search</a> for and retrieve rich information about local businesses and points of interest, available on every screen with the <a href="https://developers.google.com/places/web-service/">Places API Web Service</a>.</li>
<li>Add <a href="https://developers.google.com/places/android-api/autocomplete">autocomplete</a> to any application, providing type-ahead location-based predictions like the search on Google Maps.</li>
</ul><div>
<span><img alt="IMG_20160519_090128.jpg" height="480" src="https://lh4.googleusercontent.com/Yuv64qng5QRoMnO0UqgpO4jAEVw-TcediAss6ncWMVT9msxwYsGpV2O_mWCEgjnzpUkrgDZUFUWDlaCCL05V6hD0qbtys6GRKHznv6141e2sAjGPMcdTRhJDhbRMHPGAQ4EgOm-r" width="640"></span></div>
I am a product manager on the Maps API team. In my role, I focus on the Places API across all platforms and geographies. When I&#8217;m not at Google, I love running coastal trails, playing the piano and enjoying the fantastic lifestyle in Sydney!]]></description>
				<content:encoded><![CDATA[<span class="post-author"><i>Posted by Florian Bertele, Product Manager on the Google Maps APIs team</i></span><br />
<br />
At Google I/O, Ravi Palanki, Android Place API technical lead and I presented our session titled ‘Understand your Place in this world’. Even if you were not able to attend Google I/O in person, you can now watch our session:<br />
<div class="separator" style="clear: both; text-align: center;">
<iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/QR3PIg0RDnk" width="560"></iframe></div>
<i>Understand your Place in this world</i><br />
Humans navigate a world made up of places with names, addresses and phone numbers—not lat/long coordinates. The Google Places API enables an app or website to present location data to users in a human-centered fashion. In this session we shared  how you can use the Places API to discover your environment. I walked the audience through the main use cases and Places API functionalities, across mobile and web. We also showed off some newly-released mobile widgets, and Ravi did a deep-dive into the benefits of the mobile platform, such as optimization for mobile device battery life and increased device accuracy. This session is a great starting point to learn how the Places API can make all your apps -- not just map-centric ones -- smarter.<br />
<span style="background-color: white; clear: right; color: #212121; float: right; font-family: &quot;arial&quot;; font-size: 13.3333px; margin-bottom: 1em; margin-left: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="IMG_20160519_093436.jpg" height="480" src="https://lh4.googleusercontent.com/sQYviQqwJpRbV3Pm3IzlepGaeWuRqbOIdOM4nR0oRuZu_CsVnSnVTJyG_s3ZBhH4MXgRqMo3PCgKXLL-4iACKhX-Tx5oxrDTCgc5jDAnci-N1ijKMD3W3qe1ZLDfbcn3gFu-n0Dk" style="border: none; transform: rotate(0rad);" width="640" /></span><span id="docs-internal-guid-138b02db-2c68-7cdd-9165-7ba16b1d8614"></span><br />
With the <a href="https://developers.google.com/places/">Google Places API</a> you get data from the same database used by Google Maps and Google+ Local. Places features more than 100 million businesses and points of interest that are updated frequently through owner-verified listings and user-moderated contributions.<br />
<ul>
<li>Use the power of mobile to give your users contextual information about where they are, when they’re there with the <a href="https://developers.google.com/places/android-api/">Places API for Android</a>.</li>
<li><a href="https://developers.google.com/places/web-service/search">Search</a> for and retrieve rich information about local businesses and points of interest, available on every screen with the <a href="https://developers.google.com/places/web-service/">Places API Web Service</a>.</li>
<li>Add <a href="https://developers.google.com/places/android-api/autocomplete">autocomplete</a> to any application, providing type-ahead location-based predictions like the search on Google Maps.</li>
</ul>
<div class="separator" style="clear: both; text-align: center;">
<span style="background-color: white; color: #212121; font-family: &quot;arial&quot;; font-size: 13.3333px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="IMG_20160519_090128.jpg" height="480" src="https://lh4.googleusercontent.com/Yuv64qng5QRoMnO0UqgpO4jAEVw-TcediAss6ncWMVT9msxwYsGpV2O_mWCEgjnzpUkrgDZUFUWDlaCCL05V6hD0qbtys6GRKHznv6141e2sAjGPMcdTRhJDhbRMHPGAQ4EgOm-r" style="border: none; transform: rotate(0rad);" width="640" /></span></div>
I am a product manager on the Maps API team. In my role, I focus on the Places API across all platforms and geographies. When I’m not at Google, I love running coastal trails, playing the piano and enjoying the fantastic lifestyle in Sydney! ]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/google-io-session-live-understand-your-place-in-this-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Now you can use Explore to discover the flavors of Brazil</title>
		<link>https://googledata.org/google-earth/now-you-can-use-explore-to-discover-the-flavors-of-brazil/</link>
		<comments>https://googledata.org/google-earth/now-you-can-use-explore-to-discover-the-flavors-of-brazil/#comments</comments>
		<pubDate>Fri, 03 Jun 2016 20:57:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=1bd76c057fa7ca44eaf60ccd9d7cfd47</guid>
		<description><![CDATA[The countdown to the 2016 Rio Olympics is underway and the Google Maps team is making moves to ensure that Rio residents and Olympics tourists are able to navigate and explore the city. Whether you&#8217;re a Rio local looking to expand your palate beyond your favorite neighborhood restaurants or a traveler wanting to choose from all the restaurant options nearby, you can now look to Google Maps&#8217; Explore feature for local suggestions when in Brazil.<br /><div><br /></div><div><span><span><img height="400" src="https://lh6.googleusercontent.com/81zSRKbTCN7YlpQW9l_MVRDH_kFbJnrmhpnsA4VAOBt5fs0ShHlkezcoh7xf-b8ED1fzC3TZcTuqjHgyKypHfRGKv2ExZXpo9HyARwjQnWMUfibqxqfwJGSSeryP4nQq98NtnO-7" width="225"></span></span></div><br />The Explore experience in Brazil is very much like the experience here in the <a href="https://maps.googleblog.com/2015/09/discover-deliciousness-with-explore-in.html">US</a> and is available on both iPhone and Android. Simply open Google Maps on your mobile phone and tap &#8220;explore food &#38; drinks near you&#8221; at the bottom of the screen. Depending on where you are and time of day, a category (breakfast, lunch, coffee, dinner and drinks) is preselected for you. Google Maps will share lists of food and drink locations around you, ranging from &#8220;best breakfasts&#8221; to &#8220;waterside dining&#8221;. Once you find a list that fits your needs, just tap on the list to see suggested locations. Then swipe right or left to see more options and tap &#8220;read more&#8221; or the arrow at the bottom of the screen to select a venue and get more details. Of course you'll see these on-screen prompts like "explore food &#38; drinks near you" in the language you&#8217;ve set as primary on your mobile phone.<br /><br />For those of you not heading to Rio this summer, you can still use Explore to discover new places around the world. Explore is also available on Android and iPhone in the US, UK, France, Germany, Italy, and Japan. And it was just recently made available in Australia and Canada as well.<br /><br /><i>Posted by Bryan Cheng, Product Manager, Google Maps </i>]]></description>
				<content:encoded><![CDATA[The countdown to the 2016 Rio Olympics is underway and the Google Maps team is making moves to ensure that Rio residents and Olympics tourists are able to navigate and explore the city. Whether you’re a Rio local looking to expand your palate beyond your favorite neighborhood restaurants or a traveler wanting to choose from all the restaurant options nearby, you can now look to Google Maps’ Explore feature for local suggestions when in Brazil.<br /><div class="separator" style="clear: both; text-align: center;"><br /></div><div style="text-align: center;"><span id="docs-internal-guid-06472cad-1810-1851-d5bc-db06e905f1d3"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="400" src="https://lh6.googleusercontent.com/81zSRKbTCN7YlpQW9l_MVRDH_kFbJnrmhpnsA4VAOBt5fs0ShHlkezcoh7xf-b8ED1fzC3TZcTuqjHgyKypHfRGKv2ExZXpo9HyARwjQnWMUfibqxqfwJGSSeryP4nQq98NtnO-7" style="border: none; transform: rotate(0rad);" width="225" /></span></span></div><br />The Explore experience in Brazil is very much like the experience here in the <a href="https://maps.googleblog.com/2015/09/discover-deliciousness-with-explore-in.html">US</a> and is available on both iPhone and Android. Simply open Google Maps on your mobile phone and tap “explore food &amp; drinks near you” at the bottom of the screen. Depending on where you are and time of day, a category (breakfast, lunch, coffee, dinner and drinks) is preselected for you. Google Maps will share lists of food and drink locations around you, ranging from “best breakfasts” to “waterside dining”. Once you find a list that fits your needs, just tap on the list to see suggested locations. Then swipe right or left to see more options and tap “read more” or the arrow at the bottom of the screen to select a venue and get more details. Of course you'll see these on-screen prompts like "explore food &amp; drinks near you" in the language you’ve set as primary on your mobile phone.<br /><br />For those of you not heading to Rio this summer, you can still use Explore to discover new places around the world. Explore is also available on Android and iPhone in the US, UK, France, Germany, Italy, and Japan. And it was just recently made available in Australia and Canada as well.<br /><br /><i>Posted by Bryan Cheng, Product Manager, Google Maps </i>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/now-you-can-use-explore-to-discover-the-flavors-of-brazil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Take in the Sites of Rio de Janeiro Before the Games Begin</title>
		<link>https://googledata.org/google-earth/take-in-the-sites-of-rio-de-janeiro-before-the-games-begin/</link>
		<comments>https://googledata.org/google-earth/take-in-the-sites-of-rio-de-janeiro-before-the-games-begin/#comments</comments>
		<pubDate>Fri, 27 May 2016 20:57:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=02f2c4fabc9dc9ca3e9e21cf3fe1c266</guid>
		<description><![CDATA[Preparations are underway in the &#8220;Marvelous City&#8221; in anticipation of the 2016 Olympics Games which is expected to draw an extra half a million people to Brazil this summer. The Google Street View team has also been busy preparing for the festivities. Over the past few months, we&#8217;ve capturing fresh imagery, so everyone can enjoy <a href="https://www.google.com/intl/es-419/maps/streetview/#rio-de-janeiro-highlights">the magic of Rio de Janeiro</a> &#8211; whether planning to attend in person or watch the excitement from afar. <br /><br /><span><span><img height="416" src="https://lh6.googleusercontent.com/hjWWGT6MoRiLQwSMiwOTL61RV7_VFtNl60rvhLbrusbPySFP5ReJgYVCPNOXQ8zLQ_jiC57srvwNb5vVnHFnIz1xnb2uut1bTq9Ej0gW7xdQnm0kyNFzFmCSiyJ_ETccScaiThnL" width="624"></span></span><br /><div><i>Google Street View engineer takes pictures from the inside of Rio&#8217;s Olympic Park</i></div><br />Starting today, a quick visit to Street View will give you a preview of the places where the world's most talented athletes will make history. Barrel down the Olympic <a href="https://www.google.com/maps/@-22.8534224,-43.4098442,3a,75y,98.38h,81.34t/data=!3m6!1e1!3m4!1sJSBzVjJ-vyTjZjyNJXtT2Q!2e0!7i13312!8i6656">mountain bike trail</a> and take a stroll on <a href="https://www.google.com/maps/@-22.9121653,-43.2302485,3a,75y,30.8h,94.35t/data=!3m6!1e1!3m4!1sFswHxum2YNghwNhyqpFgSQ!3e5!7i13312!8i6656">the track</a> where runners will sprint as fast as their legs will carry them in an attempt to bring home the gold. <br /><br /><span><span><img height="340" src="https://lh5.googleusercontent.com/0AbbrxB6FkUWa0MXFy4dUELBtS5Ge43zB11W9D7ChKyLFC7RO4ymfQiREuirAtWpi5Vj7gvEqAojpzg6LRsj7x7KXXvyvJzgmdcfyLMgw3hgQQ454KFaCVK2oAes3h2MWMTSnIHC" width="624"></span></span><br /><div><i>Olympic Mountain Bike Trail</i></div><br />We&#8217;re also releasing indoor imagery of more than <a href="https://www.google.com/intl/en/maps/streetview/#rio-hotels-and-restaurants">200 hotels, restaurants and bars</a> across the city. Take a peek at the pink carpeted <a href="https://www.google.com.br/maps/@-22.9670239,-43.1788147,3a,75y,251h,90t/data=!3m8!1e1!3m6!1sMtX7fWfT-LEAAAQvOu1F0Q!2e0!3e11!6s%2F%2Fgeo3.ggpht.com%2Fcbk%3Fpanoid%3DMtX7fWfT-LEAAAQvOu1F0Q%26output%3Dthumbnail%26cb_client%3Dmaps_sv.tactile.gps%26thumb%3D2%26w%3D203%26h%3D100%26yaw%3D251.61905%26pitch%3D0!7i13312!8i6656">Copacabana Palace</a> or the breathtaking poolside ocean views at the <a href="https://www.google.com.br/maps/@-22.9869504,-43.1961006,3a,75y,301h,90t/data=!3m8!1e1!3m6!1s8-XgskIs9U4AAAQvOuyy1w!2e0!3e11!6s%2F%2Fgeo0.ggpht.com%2Fcbk%3Fpanoid%3D8-XgskIs9U4AAAQvOuyy1w%26output%3Dthumbnail%26cb_client%3Dmaps_sv.tactile.gps%26thumb%3D2%26w%3D203%26h%3D100%26yaw%3D301.86816%26pitch%3D0!7i13312!8i6656">Fasano Hotel</a>. If you&#8217;ll be in Rio for the Games, check out the vibe before you make restaurant reservations or the local bar to ensure there&#8217;s ample room on the dancefloor to bust out your Samba moves. <br /><br /><span><span><img height="343" src="https://lh6.googleusercontent.com/gd-FbuTkw5jBkkdny0cxOTlys-2kWGqx5InV4_TOC_mtF62k7cvGEHjWX9A8KPgCXQZm3mopaj47eJYq8R9eZsN_gmG2O1ZYfjJ1HBanB5jnePyDX0BpBA5nv8p3Lu7AOSVNOQlm" width="624"></span></span><br /><div><i>Suite in the Fasano Hotel, famous for its celebrity guests in Rio</i></div><br />Step outside to take in some of the most iconic sites of Rio including <a href="https://www.google.com/maps/@-22.9518947,-43.2101965,3a,75y,254.28h,119.03t/data=!3m6!1e1!3m4!1shZTwTrNfmGMSkBRv-aY7dQ!2e0!7i13312!8i6656">Christ the Redeemer</a>, The <a href="https://www.google.com/maps/@-22.9450647,-43.1963844,3a,75y,145.18h,98.45t/data=!3m6!1e1!3m4!1sOFOmMEq6JDE6ZrKlREkU_w!2e0!7i13312!8i6656">Dona Marta Hilltop</a>, and <a href="https://www.google.com/maps/@-22.9904399,-43.1908218,3a,75y,77.99h,90.96t/data=!3m6!1e1!3m4!1sJ4EZ4OqTUZdJuNH-zvSJ5w!2e0!7i13312!8i6656">Arpoador Beach</a>.  We&#8217;ve captured imagery of every main tourist attraction in Rio including the famous <a href="https://www.google.com/maps/@-22.9155963,-43.1797871,3a,75y,241.04h,95.03t/data=!3m6!1e1!3m4!1sR-t844_DHQRZAjUVS4BS8Q!2e0!7i13312!8i6656">Selar&#243;n Steps</a>. <br /><br /><span><span><img height="341" src="https://lh4.googleusercontent.com/c2XCGJB0xZBwQLBr3azwXP3DGJ2yz-6op-T1AKCBfZ5ge62knGv8n5YsDVggAvMzWhhFJYPmifDdKB-1leNj4p2Tff_YlTqitD_DEAxJrouSjUgd6n7ZMka494Zs6fRYKLMQAL9e" width="624"></span></span><br /><div><i>View from Arpoador Beach</i></div><br />In addition to the many beautiful sites, we&#8217;ve collected up-to-date Street View imagery of Rio's streets and neighborhoods so you can get a feel for the area around your accommodation ahead of time. Check out the bus stops to familiarize yourself with local transportation - or pick the perfect people watching Juice bar to enjoy an Acai bowl on the way from the hotel to the beach. <br /><br />Whether you&#8217;re preparing to visit in person or simply enjoying the sites from afar, make yourself a caipirinha or have a P&#227;o de Queijo (delicious Brazilian cheese bread) while you explore.<br /><br /><br /><i>Posted by Marcus Leal, Google Maps manager in Brazil</i>]]></description>
				<content:encoded><![CDATA[Preparations are underway in the “Marvelous City” in anticipation of the 2016 Olympics Games which is expected to draw an extra half a million people to Brazil this summer. The Google Street View team has also been busy preparing for the festivities. Over the past few months, we’ve capturing fresh imagery, so everyone can enjoy <a href="https://www.google.com/intl/es-419/maps/streetview/#rio-de-janeiro-highlights">the magic of Rio de Janeiro</a> – whether planning to attend in person or watch the excitement from afar. <br /><br /><span id="docs-internal-guid-dd4bf6de-f3fa-225a-60e6-f972f788bf57"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="416" src="https://lh6.googleusercontent.com/hjWWGT6MoRiLQwSMiwOTL61RV7_VFtNl60rvhLbrusbPySFP5ReJgYVCPNOXQ8zLQ_jiC57srvwNb5vVnHFnIz1xnb2uut1bTq9Ej0gW7xdQnm0kyNFzFmCSiyJ_ETccScaiThnL" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="624" /></span></span><br /><div style="text-align: center;"><i>Google Street View engineer takes pictures from the inside of Rio’s Olympic Park</i></div><br />Starting today, a quick visit to Street View will give you a preview of the places where the world's most talented athletes will make history. Barrel down the Olympic <a href="https://www.google.com/maps/@-22.8534224,-43.4098442,3a,75y,98.38h,81.34t/data=!3m6!1e1!3m4!1sJSBzVjJ-vyTjZjyNJXtT2Q!2e0!7i13312!8i6656">mountain bike trail</a> and take a stroll on <a href="https://www.google.com/maps/@-22.9121653,-43.2302485,3a,75y,30.8h,94.35t/data=!3m6!1e1!3m4!1sFswHxum2YNghwNhyqpFgSQ!3e5!7i13312!8i6656">the track</a> where runners will sprint as fast as their legs will carry them in an attempt to bring home the gold. <br /><br /><span id="docs-internal-guid-dd4bf6de-f3fb-0b41-1a74-09a57a60960c"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="340" src="https://lh5.googleusercontent.com/0AbbrxB6FkUWa0MXFy4dUELBtS5Ge43zB11W9D7ChKyLFC7RO4ymfQiREuirAtWpi5Vj7gvEqAojpzg6LRsj7x7KXXvyvJzgmdcfyLMgw3hgQQ454KFaCVK2oAes3h2MWMTSnIHC" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="624" /></span></span><br /><div style="text-align: center;"><i>Olympic Mountain Bike Trail</i></div><br />We’re also releasing indoor imagery of more than <a href="https://www.google.com/intl/en/maps/streetview/#rio-hotels-and-restaurants">200 hotels, restaurants and bars</a> across the city. Take a peek at the pink carpeted <a href="https://www.google.com.br/maps/@-22.9670239,-43.1788147,3a,75y,251h,90t/data=!3m8!1e1!3m6!1sMtX7fWfT-LEAAAQvOu1F0Q!2e0!3e11!6s%2F%2Fgeo3.ggpht.com%2Fcbk%3Fpanoid%3DMtX7fWfT-LEAAAQvOu1F0Q%26output%3Dthumbnail%26cb_client%3Dmaps_sv.tactile.gps%26thumb%3D2%26w%3D203%26h%3D100%26yaw%3D251.61905%26pitch%3D0!7i13312!8i6656">Copacabana Palace</a> or the breathtaking poolside ocean views at the <a href="https://www.google.com.br/maps/@-22.9869504,-43.1961006,3a,75y,301h,90t/data=!3m8!1e1!3m6!1s8-XgskIs9U4AAAQvOuyy1w!2e0!3e11!6s%2F%2Fgeo0.ggpht.com%2Fcbk%3Fpanoid%3D8-XgskIs9U4AAAQvOuyy1w%26output%3Dthumbnail%26cb_client%3Dmaps_sv.tactile.gps%26thumb%3D2%26w%3D203%26h%3D100%26yaw%3D301.86816%26pitch%3D0!7i13312!8i6656">Fasano Hotel</a>. If you’ll be in Rio for the Games, check out the vibe before you make restaurant reservations or the local bar to ensure there’s ample room on the dancefloor to bust out your Samba moves. <br /><br /><span id="docs-internal-guid-dd4bf6de-f3fc-4754-4641-dcd3a5c67b39"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="343" src="https://lh6.googleusercontent.com/gd-FbuTkw5jBkkdny0cxOTlys-2kWGqx5InV4_TOC_mtF62k7cvGEHjWX9A8KPgCXQZm3mopaj47eJYq8R9eZsN_gmG2O1ZYfjJ1HBanB5jnePyDX0BpBA5nv8p3Lu7AOSVNOQlm" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="624" /></span></span><br /><div style="text-align: center;"><i>Suite in the Fasano Hotel, famous for its celebrity guests in Rio</i></div><br />Step outside to take in some of the most iconic sites of Rio including <a href="https://www.google.com/maps/@-22.9518947,-43.2101965,3a,75y,254.28h,119.03t/data=!3m6!1e1!3m4!1shZTwTrNfmGMSkBRv-aY7dQ!2e0!7i13312!8i6656">Christ the Redeemer</a>, The <a href="https://www.google.com/maps/@-22.9450647,-43.1963844,3a,75y,145.18h,98.45t/data=!3m6!1e1!3m4!1sOFOmMEq6JDE6ZrKlREkU_w!2e0!7i13312!8i6656">Dona Marta Hilltop</a>, and <a href="https://www.google.com/maps/@-22.9904399,-43.1908218,3a,75y,77.99h,90.96t/data=!3m6!1e1!3m4!1sJ4EZ4OqTUZdJuNH-zvSJ5w!2e0!7i13312!8i6656">Arpoador Beach</a>.  We’ve captured imagery of every main tourist attraction in Rio including the famous <a href="https://www.google.com/maps/@-22.9155963,-43.1797871,3a,75y,241.04h,95.03t/data=!3m6!1e1!3m4!1sR-t844_DHQRZAjUVS4BS8Q!2e0!7i13312!8i6656">Selarón Steps</a>. <br /><br /><span id="docs-internal-guid-dd4bf6de-f3fe-f369-755a-fc8f37f6176e"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="341" src="https://lh4.googleusercontent.com/c2XCGJB0xZBwQLBr3azwXP3DGJ2yz-6op-T1AKCBfZ5ge62knGv8n5YsDVggAvMzWhhFJYPmifDdKB-1leNj4p2Tff_YlTqitD_DEAxJrouSjUgd6n7ZMka494Zs6fRYKLMQAL9e" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="624" /></span></span><br /><div style="text-align: center;"><i>View from Arpoador Beach</i></div><br />In addition to the many beautiful sites, we’ve collected up-to-date Street View imagery of Rio's streets and neighborhoods so you can get a feel for the area around your accommodation ahead of time. Check out the bus stops to familiarize yourself with local transportation - or pick the perfect people watching Juice bar to enjoy an Acai bowl on the way from the hotel to the beach. <br /><br />Whether you’re preparing to visit in person or simply enjoying the sites from afar, make yourself a caipirinha or have a Pão de Queijo (delicious Brazilian cheese bread) while you explore.<br /><br /><br /><i>Posted by Marcus Leal, Google Maps manager in Brazil</i>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/take-in-the-sites-of-rio-de-janeiro-before-the-games-begin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Bring the world’s changing forests inside the classroom</title>
		<link>https://googledata.org/google-earth/bring-the-worlds-changing-forests-inside-the-classroom/</link>
		<comments>https://googledata.org/google-earth/bring-the-worlds-changing-forests-inside-the-classroom/#comments</comments>
		<pubDate>Wed, 25 May 2016 21:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=026b029a439aab1ae2672a8c9d331596</guid>
		<description><![CDATA[Forests are the mighty lungs of our planet. They absorb carbon dioxide, and emit oxygen on which all people and animals on Earth rely. For the sake of our future, it is critical that all people, including the next generation, understand our global forests in order to manage them sustainably. Today, <a href="http://scienceintheclassroom.org/">Science in the Classroom</a>, <a href="http://geog.umd.edu/facultyprofile/Hansen/Matthew%20C.">Dr. Matt Hansen</a> of the <a href="http://geog.umd.edu/">University of Maryland</a>, and <a href="https://earthengine.google.com/">Google Earth Engine</a> are presenting <a href="http://globalforestchange.org/">Global Forest Change Explorer</a> to help engage young people in forest conservation.<br /><br /><div><span><span><img height="399" src="https://lh4.googleusercontent.com/We-Tb8cXP35qp-giYnUVlF8v7NRsPnFTBUYDJiQLWxMUEljI4RHr-6zTppzesSQvwYg9K3n1iuE6fuWj67Sp5W7RtVv3n3z_Gds_shHMB3VqRzq32al9bSHoMYx17XhgGq8AWd_a" width="482"></span></span></div><div><a href="http://app.globalforestchange.org/#hotspot/alaska">Tracking patterns of change in a hotspot zone, Alaska.</a></div><br />The Global Forest Change Explorer website contains maps that are available for interactive analysis as well as an accompanying activity worksheet. The <a href="http://app.globalforestchange.org/#country/united-states-of-america">Explorer Tool</a>  allows students to quickly visualize trends in forest loss and gain, compare different countries and ecoregions, and apply the forest data to try to predict underlying causes where there is significant change in forest density. The Explorer Tool relies on open data that is used by remote sensing and GIS professionals in their work.<br /><br /><div><span><span><img height="289" src="https://lh5.googleusercontent.com/3klWRbRqMUIgv0zUbeLL7l9QBiOdyqf_ucb_vmS6RzCQB58OBEjuu2KagAmE2-EzbjxmOnkSubYnZycfirVHkQW-t1YQGRuVo1v9ABbT-0Kk9O9P93JLgdY0vG7ViyLm4k58UzUM" width="161"></span></span></div><div>Fly to different parts of the world and compare data.</div><br />A number of years ago, Dr. Matt Hansen and a team of researchers at the University of Maryland turned to Google Earth Engine to map high-resolution global forest cover with Earth Engine's cloud-based image processing and computing. The team mapped global forest loss and gain from 2000 to 2012 at 30-meter resolution for the entire globe. In 2013, the methods and results were published in <a href="http://science.sciencemag.org/content/342/6160/850">Science Magazine</a> and online <a href="http://earthenginepartners.appspot.com/science-2013-global-forest">for everyone to explore</a>. These findings are now an important part of the website <a href="http://globalforestwatch.org/">Global Forest Watch</a>, which gives governments and decision makers free access to the data and tools required to monitor and manage their forests. <br /><br /><div><span><span><img alt="Screen Shot 2016-05-11 at 9.06.46 PM.png" height="260" src="https://lh6.googleusercontent.com/jV5RkZXEtU9S5iz9eORkUUPCRLeyzXfYca7OmWra4cNpS-pJ4Ztow9oSdN-obIi3FY1rvtxewCIHRgzyGDXpGOCcljRSRltLKBxscyk4q5k2oALzKqhDSEAbGREusmUr09QkQx-F" width="511"></span></span></div><div>Dr. Matt Hansen presenting at the World Economic Forum</div><br />Science in the Classroom (SitC) thought this was great research to bring into the classroom and make available to anyone online. SitC packages annotated research papers with supplemental teaching materials to help pre-college and college students understand the structure and workings of scientific research. SitC and Google Earth Engine built the Global Forest Change Explorer to make Dr. Hansen&#8217;s data accessible to a younger audience.<br /><br /><div><span><span><img alt="Screen Shot 2016-05-12 at 12.38.38 PM.png" height="313" src="https://lh3.googleusercontent.com/VAbCD0R8vbnNQ_9SvXM3j1PTpMV70FMA-xAuj45diAvpPXTzdrAjYzre5jQHErkk_zahqMvGdr0PxeuGHT6IZLIitG9vAakLxwhwY4pH289YMk1HbsacRSR-6rFfygcIqE358_o-" width="489"></span></span></div><div><a href="http://scienceintheclassroom.org/research-papers/seeing-forest-trees/university">Annotations provide supplemental context to Dr. Hansen&#8217;s paper</a></div><br />We live in a dynamic world where the pressures of population growth increasingly impact and threaten our forests. However, as technology, open data, and people continue to mobilize, we are given more tools to research the health of our planet. Educators can easily flip their classrooms into science labs by combining <a href="http://scienceintheclassroom.org/research-papers/seeing-forest-trees/highschool">SitC materials</a> with Global Forest Change Explorer. With these tools, students will leave sessions with richer understanding of environmental change, more curiosity, and a desire to actively participate in protecting our forests.<br /><br />Get started with Global Forest Change Explorer today!<br /><br /><br />Posted by Emily Henderson, Google Geo Education Outreach]]></description>
				<content:encoded><![CDATA[Forests are the mighty lungs of our planet. They absorb carbon dioxide, and emit oxygen on which all people and animals on Earth rely. For the sake of our future, it is critical that all people, including the next generation, understand our global forests in order to manage them sustainably. Today, <a href="http://scienceintheclassroom.org/">Science in the Classroom</a>, <a href="http://geog.umd.edu/facultyprofile/Hansen/Matthew%20C.">Dr. Matt Hansen</a> of the <a href="http://geog.umd.edu/">University of Maryland</a>, and <a href="https://earthengine.google.com/">Google Earth Engine</a> are presenting <a href="http://globalforestchange.org/">Global Forest Change Explorer</a> to help engage young people in forest conservation.<br /><br /><div style="text-align: center;"><span id="docs-internal-guid-81ce0a97-dff5-8547-0462-a0583688d7fd"><span style="font-family: 'Open Sans'; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img height="399" src="https://lh4.googleusercontent.com/We-Tb8cXP35qp-giYnUVlF8v7NRsPnFTBUYDJiQLWxMUEljI4RHr-6zTppzesSQvwYg9K3n1iuE6fuWj67Sp5W7RtVv3n3z_Gds_shHMB3VqRzq32al9bSHoMYx17XhgGq8AWd_a" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="482" /></span></span></div><div style="text-align: center;"><a href="http://app.globalforestchange.org/#hotspot/alaska">Tracking patterns of change in a hotspot zone, Alaska.</a></div><br />The Global Forest Change Explorer website contains maps that are available for interactive analysis as well as an accompanying activity worksheet. The <a href="http://app.globalforestchange.org/#country/united-states-of-america">Explorer Tool</a>  allows students to quickly visualize trends in forest loss and gain, compare different countries and ecoregions, and apply the forest data to try to predict underlying causes where there is significant change in forest density. The Explorer Tool relies on open data that is used by remote sensing and GIS professionals in their work.<br /><br /><div style="text-align: center;"><span id="docs-internal-guid-81ce0a97-dff5-d18a-f5db-2b2d4348b5fa"><span style="font-family: 'Open Sans'; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img height="289" src="https://lh5.googleusercontent.com/3klWRbRqMUIgv0zUbeLL7l9QBiOdyqf_ucb_vmS6RzCQB58OBEjuu2KagAmE2-EzbjxmOnkSubYnZycfirVHkQW-t1YQGRuVo1v9ABbT-0Kk9O9P93JLgdY0vG7ViyLm4k58UzUM" style="border: none; transform: rotate(0rad);" width="161" /></span></span></div><div style="text-align: center;">Fly to different parts of the world and compare data.</div><br />A number of years ago, Dr. Matt Hansen and a team of researchers at the University of Maryland turned to Google Earth Engine to map high-resolution global forest cover with Earth Engine's cloud-based image processing and computing. The team mapped global forest loss and gain from 2000 to 2012 at 30-meter resolution for the entire globe. In 2013, the methods and results were published in <a href="http://science.sciencemag.org/content/342/6160/850">Science Magazine</a> and online <a href="http://earthenginepartners.appspot.com/science-2013-global-forest">for everyone to explore</a>. These findings are now an important part of the website <a href="http://globalforestwatch.org/">Global Forest Watch</a>, which gives governments and decision makers free access to the data and tools required to monitor and manage their forests. <br /><br /><div style="text-align: center;"><span id="docs-internal-guid-81ce0a97-dff6-1c28-a671-4fc167860d76"><span style="font-family: 'Open Sans'; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img alt="Screen Shot 2016-05-11 at 9.06.46 PM.png" height="260" src="https://lh6.googleusercontent.com/jV5RkZXEtU9S5iz9eORkUUPCRLeyzXfYca7OmWra4cNpS-pJ4Ztow9oSdN-obIi3FY1rvtxewCIHRgzyGDXpGOCcljRSRltLKBxscyk4q5k2oALzKqhDSEAbGREusmUr09QkQx-F" style="border: none; transform: rotate(0rad);" width="511" /></span></span></div><div style="text-align: center;">Dr. Matt Hansen presenting at the World Economic Forum</div><br />Science in the Classroom (SitC) thought this was great research to bring into the classroom and make available to anyone online. SitC packages annotated research papers with supplemental teaching materials to help pre-college and college students understand the structure and workings of scientific research. SitC and Google Earth Engine built the Global Forest Change Explorer to make Dr. Hansen’s data accessible to a younger audience.<br /><br /><div style="text-align: center;"><span id="docs-internal-guid-81ce0a97-dff6-630b-65f3-f8b0b2b7b62c"><span style="font-family: 'Open Sans'; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img alt="Screen Shot 2016-05-12 at 12.38.38 PM.png" height="313" src="https://lh3.googleusercontent.com/VAbCD0R8vbnNQ_9SvXM3j1PTpMV70FMA-xAuj45diAvpPXTzdrAjYzre5jQHErkk_zahqMvGdr0PxeuGHT6IZLIitG9vAakLxwhwY4pH289YMk1HbsacRSR-6rFfygcIqE358_o-" style="border: none; transform: rotate(0rad);" width="489" /></span></span></div><div style="text-align: center;"><a href="http://scienceintheclassroom.org/research-papers/seeing-forest-trees/university">Annotations provide supplemental context to Dr. Hansen’s paper</a></div><br />We live in a dynamic world where the pressures of population growth increasingly impact and threaten our forests. However, as technology, open data, and people continue to mobilize, we are given more tools to research the health of our planet. Educators can easily flip their classrooms into science labs by combining <a href="http://scienceintheclassroom.org/research-papers/seeing-forest-trees/highschool">SitC materials</a> with Global Forest Change Explorer. With these tools, students will leave sessions with richer understanding of environmental change, more curiosity, and a desire to actively participate in protecting our forests.<br /><br />Get started with Global Forest Change Explorer today!<br /><br /><br />Posted by Emily Henderson, Google Geo Education Outreach]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/bring-the-worlds-changing-forests-inside-the-classroom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Get away for Memorial Day with Google Maps’ road trip-friendly features and tips</title>
		<link>https://googledata.org/google-earth/get-away-for-memorial-day-with-google-maps-road-trip-friendly-features-and-tips/</link>
		<comments>https://googledata.org/google-earth/get-away-for-memorial-day-with-google-maps-road-trip-friendly-features-and-tips/#comments</comments>
		<pubDate>Thu, 19 May 2016 22:31:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=2dd121bbd1c49ad5cecb4bb29cb2fe54</guid>
		<description><![CDATA[It&#8217;s almost here. The first three-day weekend after the longest stretch of the year without a paid holiday&#8212;and the unofficial start of summer. With nearly 34 million people expected to hit the roads and travel more than 50 miles this Memorial Day weekend, travelers just might need some assistance getting where they&#8217;re going, beating the crowds and exploring once there. With Google Maps as your copilot you&#8217;ll have a leg up on the road tripping competition. Here are some Google Maps features and time-saving tips to help ace your long weekend road trip: <br /><br /><b>Searching within Navigation:</b>&#160;Make quick pit stops without long detours. Search for places along your route without ever leaving navigation mode. Once in navigation mode, just tap the magnifying glass and then tap a category like &#8220;gas stations&#8221; and see real-time gas prices or &#8220;restaurants&#8221; to see dining options close to you. Tap &#8220;search for more places&#8221; to search for a venue outside the preset categories. And no matter what you search for, you&#8217;re alerted to how much detour time the stop will add to your trip. <i>Available on iPhone and Android</i><br /><div><a href="https://3.bp.blogspot.com/-tUpjBofDbus/Vz4g3cGPfjI/AAAAAAAAE4A/FBztPh0z06Em94GRsSDnJPRyJjx49YdywCLcB/s1600/Screen%2BShot%2B2016-05-19%2Bat%2B1.23.03%2BPM.png"><img border="0" src="https://3.bp.blogspot.com/-tUpjBofDbus/Vz4g3cGPfjI/AAAAAAAAE4A/FBztPh0z06Em94GRsSDnJPRyJjx49YdywCLcB/s640/Screen%2BShot%2B2016-05-19%2Bat%2B1.23.03%2BPM.png"></a></div><b>Offline Maps:&#160;</b>Search for places, get directions, and turn-by-turn navigation even when you hit a dead zone. Before you leave and still have a wifi connection, just download the region you&#8217;ll be traveling within for an uninterrupted navigation experience once you hit the road. <i>Available on Android and iPhone</i><br /><div><span><span><img height="450" src="https://lh6.googleusercontent.com/j4SoPHThx1p0pbMEvxkeLMwpsggjtkMFEZBNJImG5dNWnVBAfTwdV31s6jGAJLta7lXTecpXkUAgdTkEErV8dUAZDSdA-k4_7O-nbE4KHITjepfbnn3gW2HG6_QFsMimUYgHoErc" width="600"></span></span></div><b>Real-time Traffic Alerts and Dynamic Rerouting:&#160;</b>Google Maps gives you the best and fastest route based on current and historic traffic conditions. When you Input a destination, you get alerted about upcoming traffic conditions. And while on the road, Google Maps gives you a heads up if congestion lies ahead along with an estimate of how long the delay will be. You&#8217;ll also get suggestions for an alternative route (if a faster one is available) with an explanation for why it&#8217;s recommended. <i>Available on Android and iPhone</i><br /><br /><div><br /></div><div><br /></div><b>Toll and Ferry Notifications:&#160;</b>Never get caught without exact change again. You&#8217;ll see a toll icon when your route includes toll roads and you&#8217;ll see a ferry icon if your route requires you to take a ferry. To avoid tolls and ferries completely, select &#8220;Route options&#8221; when you search for driving directions and check off the categories you want to avoid. <i>Available on Android and iPhone</i><br /><br /><div><a href="https://1.bp.blogspot.com/-a7GIQiD-CMU/Vz4fM1T0xzI/AAAAAAAAE30/iAu9k_b5IPUR0aYUCEjDt5x5ZyAwkhdBACLcB/s1600/Screen%2BShot%2B2016-05-19%2Bat%2B1.15.22%2BPM.png"><img border="0" height="343" src="https://1.bp.blogspot.com/-a7GIQiD-CMU/Vz4fM1T0xzI/AAAAAAAAE30/iAu9k_b5IPUR0aYUCEjDt5x5ZyAwkhdBACLcB/s400/Screen%2BShot%2B2016-05-19%2Bat%2B1.15.22%2BPM.png" width="400"></a></div><b>Explore:</b>&#160;Once you get to your destination, open Google Maps and tap &#8220;Explore food &#38; drinks near you&#8221; at the bottom of the screen. Based on the time of day, you&#8217;ll see relevant lists of food and drink locations nearby. <i>Available on Android and rolling out to iPhone users in the US, UK, Japan, France, Germany, Italy and Spain now</i><br /><div><br /></div><div><br /></div><br /><div><br /></div>Now that you&#8217;ve got the scoop on road trip-friendly features, get familiar with some time-saving tips. Master these simple hacks and you&#8217;ll practically be a Google Maps ninja.<br /><ul><li><b>Shift into navigation mode faster: </b>You can access navigation mode in Maps (turn-by-turn directions and dictation) by tapping and holding the car, bike, or walk icon in the bottom right corner of your phone screen. <i>Available on Android and iPhone</i></li><li><b>Get oriented with one tap: </b>Tap the compass in the top right corner of your screen, and the map will shift to match the direction you&#8217;re facing. <i>Available on Android and iPhone</i></li><li><b>Try the one-handed zoom:</b> If you've only got one hand free, you can still zoom into your map&#8212;just double tap the screen and swipe up or down to zoom in and out. <i>Available on Android and iPhone</i></li><li><b>Quickly access Street View on the go:</b> On your phone, long press somewhere on the map to drop a pin, search for a place, or select a location already shown. Tap the bar at the bottom of the screen and then tap again on the image with the 360 degree arrow in the bottom left hand corner to enter Street View mode. To take a look around your destination just swipe around the Street View image. <i>Available on Android and iPhone</i></li></ul><i>Posted by Amanda Leicht Moore, Google Maps Product Manager</i>]]></description>
				<content:encoded><![CDATA[It’s almost here. The first three-day weekend after the longest stretch of the year without a paid holiday—and the unofficial start of summer. With nearly 34 million people expected to hit the roads and travel more than 50 miles this Memorial Day weekend, travelers just might need some assistance getting where they’re going, beating the crowds and exploring once there. With Google Maps as your copilot you’ll have a leg up on the road tripping competition. Here are some Google Maps features and time-saving tips to help ace your long weekend road trip: <br /><br /><b>Searching within Navigation:</b>&nbsp;Make quick pit stops without long detours. Search for places along your route without ever leaving navigation mode. Once in navigation mode, just tap the magnifying glass and then tap a category like “gas stations” and see real-time gas prices or “restaurants” to see dining options close to you. Tap “search for more places” to search for a venue outside the preset categories. And no matter what you search for, you’re alerted to how much detour time the stop will add to your trip. <i>Available on iPhone and Android</i><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-tUpjBofDbus/Vz4g3cGPfjI/AAAAAAAAE4A/FBztPh0z06Em94GRsSDnJPRyJjx49YdywCLcB/s1600/Screen%2BShot%2B2016-05-19%2Bat%2B1.23.03%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="https://3.bp.blogspot.com/-tUpjBofDbus/Vz4g3cGPfjI/AAAAAAAAE4A/FBztPh0z06Em94GRsSDnJPRyJjx49YdywCLcB/s640/Screen%2BShot%2B2016-05-19%2Bat%2B1.23.03%2BPM.png" /></a></div><b>Offline Maps:&nbsp;</b>Search for places, get directions, and turn-by-turn navigation even when you hit a dead zone. Before you leave and still have a wifi connection, just download the region you’ll be traveling within for an uninterrupted navigation experience once you hit the road. <i>Available on Android and iPhone</i><br /><div style="text-align: center;"><span id="docs-internal-guid-5f53c76e-caae-34e1-5d64-1e88b28e8c97"><span style="font-family: &quot;arial&quot;; font-size: 13.3333px; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;"><img height="450" src="https://lh6.googleusercontent.com/j4SoPHThx1p0pbMEvxkeLMwpsggjtkMFEZBNJImG5dNWnVBAfTwdV31s6jGAJLta7lXTecpXkUAgdTkEErV8dUAZDSdA-k4_7O-nbE4KHITjepfbnn3gW2HG6_QFsMimUYgHoErc" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="600" /></span></span></div><b>Real-time Traffic Alerts and Dynamic Rerouting:&nbsp;</b>Google Maps gives you the best and fastest route based on current and historic traffic conditions. When you Input a destination, you get alerted about upcoming traffic conditions. And while on the road, Google Maps gives you a heads up if congestion lies ahead along with an estimate of how long the delay will be. You’ll also get suggestions for an alternative route (if a faster one is available) with an explanation for why it’s recommended. <i>Available on Android and iPhone</i><br /><br /><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/SSbwmR1kw4g?list=PLcRbp4LqBpwHyJ7nOWQ2T46cOL3Wsyx9h" width="560"></iframe><br /></div><div style="text-align: center;"><br /></div><b>Toll and Ferry Notifications:&nbsp;</b>Never get caught without exact change again. You’ll see a toll icon when your route includes toll roads and you’ll see a ferry icon if your route requires you to take a ferry. To avoid tolls and ferries completely, select “Route options” when you search for driving directions and check off the categories you want to avoid. <i>Available on Android and iPhone</i><br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-a7GIQiD-CMU/Vz4fM1T0xzI/AAAAAAAAE30/iAu9k_b5IPUR0aYUCEjDt5x5ZyAwkhdBACLcB/s1600/Screen%2BShot%2B2016-05-19%2Bat%2B1.15.22%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="343" src="https://1.bp.blogspot.com/-a7GIQiD-CMU/Vz4fM1T0xzI/AAAAAAAAE30/iAu9k_b5IPUR0aYUCEjDt5x5ZyAwkhdBACLcB/s400/Screen%2BShot%2B2016-05-19%2Bat%2B1.15.22%2BPM.png" width="400" /></a></div><b>Explore:</b>&nbsp;Once you get to your destination, open Google Maps and tap “Explore food &amp; drinks near you” at the bottom of the screen. Based on the time of day, you’ll see relevant lists of food and drink locations nearby. <i>Available on Android and rolling out to iPhone users in the US, UK, Japan, France, Germany, Italy and Spain now</i><br /><div class="separator" style="clear: both; text-align: center;"><br /></div><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/uOtSG3k50QY?list=PLcRbp4LqBpwHyJ7nOWQ2T46cOL3Wsyx9h" width="560"></iframe><br /></div><br /><div class="separator" style="clear: both; text-align: center;"><br /></div>Now that you’ve got the scoop on road trip-friendly features, get familiar with some time-saving tips. Master these simple hacks and you’ll practically be a Google Maps ninja.<br /><ul><li><b>Shift into navigation mode faster: </b>You can access navigation mode in Maps (turn-by-turn directions and dictation) by tapping and holding the car, bike, or walk icon in the bottom right corner of your phone screen. <i>Available on Android and iPhone</i></li><li><b>Get oriented with one tap: </b>Tap the compass in the top right corner of your screen, and the map will shift to match the direction you’re facing. <i>Available on Android and iPhone</i></li><li><b>Try the one-handed zoom:</b> If you've only got one hand free, you can still zoom into your map—just double tap the screen and swipe up or down to zoom in and out. <i>Available on Android and iPhone</i></li><li><b>Quickly access Street View on the go:</b> On your phone, long press somewhere on the map to drop a pin, search for a place, or select a location already shown. Tap the bar at the bottom of the screen and then tap again on the image with the 360 degree arrow in the bottom left hand corner to enter Street View mode. To take a look around your destination just swipe around the Street View image. <i>Available on Android and iPhone</i></li></ul><i>Posted by Amanda Leicht Moore, Google Maps Product Manager</i> ]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/get-away-for-memorial-day-with-google-maps-road-trip-friendly-features-and-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>One Day in at Google I/O</title>
		<link>https://googledata.org/google-maps/one-day-in-at-google-io/</link>
		<comments>https://googledata.org/google-maps/one-day-in-at-google-io/#comments</comments>
		<pubDate>Thu, 19 May 2016 15:32:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=d562a6f4092d53b35897ad37fee5dfca</guid>
		<description><![CDATA[<span><i>Posted by Ken Hoetmer, Product Manager, Google Maps APIs</i></span><br /><br />
Day 1 done! We had a great first day at <a href="https://events.google.com/io2016/">Google I/O</a>&#8212;more than 800 developers visited our Geo sandbox to check out apps, play with 360 degree cameras and most importantly, chat with our engineers, product managers, and developer advocates about the apps they&#8217;re building.<br /><div>
<span><img alt="IMG_6610.JPG" height="399" src="https://lh4.googleusercontent.com/WByFX67eTumBkNdIvGv3VYwbCmhcLlYcl8BiNnHNdLsj85-3Fv2kC5E4QweQrZV66f7MFaYi10P5uS-8ROFhRJ2Os7aMTAenK7SEGYtcgqf12ucJtLXbmAXh-4ufiAkCEoyXoXbQ" width="531"></span></div>
<span></span><br />
The Geo sandbox features Sugarbear, a 1959 PD-4104 General Motors Coach that measures 35&#8217; long by 8&#8217; wide with a diesel engine outfitted for biodiesel. Sugarbear made an epic <a href="https://codetheroad.withgoogle.com/">trip across the USA</a> after last year&#8217;s I/O and we&#8217;ve brought her back this year for more demo fun. You can engage with interactive maps experiences and check out customer applications inside the bus. Climb Yosemite's El Capitan, calculate your solar potential with Project Sunroof, and see how Nest and the Environmental Defense Fund use location data to make our lives better. Sugarbear also features Google Maps APIs customers Trucker Path, Zendrive, Postmates, GTX Corp and Vagabond.<br /><div>
<span><img alt="2016-05-18-1.jpg" height="384" src="https://lh6.googleusercontent.com/gjji1W3gNw70Q0hukI3GVeOs4s_7U6hClfPKvea0ck3y_hynEDOHw0wZI98oqa1_vkMacMOIXGDmzrX390Ik0vW3XChKvvjbpAA91ztnSgANWtRSRHlwetKPq2ri3PaB7MIXHiNv" width="512"></span></div>
<span></span><br /><div>
<span></span></div>
The Google I/O event shuttle buses are also being tracked and visualized in real time by an app we built using Firebase and Google Maps APIs. Within the Geo sandbox you can check out the app on the big screen and chat with the developers about how it works on the inside (hint: ask for Brett).<span></span><br /><br />
Geo also hosted one session yesterday: <a href="https://events.google.com/io2016/schedule?sid=84621cfd-0bef-e511-a517-00155d5066d7#day1/84621cfd-0bef-e511-a517-00155d5066d7">Location and Proximity Superpowers: Eddystone + Google Beacon Platform</a>&#160;and we have several additional sessions on Thursday and Friday, including <a href="https://events.google.com/io2016/schedule?sid=89621cfd-0bef-e511-a517-00155d5066d7#day2/89621cfd-0bef-e511-a517-00155d5066d7">Understand your Place in this world</a> and <a href="https://events.google.com/io2016/schedule?sid=8e621cfd-0bef-e511-a517-00155d5066d7#day2/8e621cfd-0bef-e511-a517-00155d5066d7">Building geo services that scale</a>.<br /><div>
<span><img height="480" src="https://lh3.googleusercontent.com/BmL6G9aSCTayncVXnOvAhniNgOmS0BqUll1CBJBUu1XVft90AdUCfa3cIJLuhdB9Hwt5bG--Ys7fnTXd4sKkYVuZG6eOhUAdgXhsOn4CvDl3euCLf73tE9GwjWcANyN10g0E_w_Q" width="640"></span></div>
<span></span><br />
Finally, don&#8217;t forget about our office hours&#8212;scheduled for Thursday, May 19 at 4pm. We&#8217;ll be in the tent for an hour...bring your Maps and Location questions for our Product Managers and Developer Advocates.]]></description>
				<content:encoded><![CDATA[<span class="post-author"><i>Posted by Ken Hoetmer, Product Manager, Google Maps APIs</i></span><br />
<br />
Day 1 done! We had a great first day at <a href="https://events.google.com/io2016/">Google I/O</a>—more than 800 developers visited our Geo sandbox to check out apps, play with 360 degree cameras and most importantly, chat with our engineers, product managers, and developer advocates about the apps they’re building.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: &quot;arial&quot;; font-size: 14.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="IMG_6610.JPG" height="399" src="https://lh4.googleusercontent.com/WByFX67eTumBkNdIvGv3VYwbCmhcLlYcl8BiNnHNdLsj85-3Fv2kC5E4QweQrZV66f7MFaYi10P5uS-8ROFhRJ2Os7aMTAenK7SEGYtcgqf12ucJtLXbmAXh-4ufiAkCEoyXoXbQ" style="border: none; transform: rotate(0rad);" width="531" /></span></div>
<span id="docs-internal-guid-b979450b-c9a2-15e5-55a8-31af58e62796"></span><br />
The Geo sandbox features Sugarbear, a 1959 PD-4104 General Motors Coach that measures 35’ long by 8’ wide with a diesel engine outfitted for biodiesel. Sugarbear made an epic <a href="https://codetheroad.withgoogle.com/">trip across the USA</a> after last year’s I/O and we’ve brought her back this year for more demo fun. You can engage with interactive maps experiences and check out customer applications inside the bus. Climb Yosemite's El Capitan, calculate your solar potential with Project Sunroof, and see how Nest and the Environmental Defense Fund use location data to make our lives better. Sugarbear also features Google Maps APIs customers Trucker Path, Zendrive, Postmates, GTX Corp and Vagabond.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: &quot;arial&quot;; font-size: 14.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="2016-05-18-1.jpg" height="384" src="https://lh6.googleusercontent.com/gjji1W3gNw70Q0hukI3GVeOs4s_7U6hClfPKvea0ck3y_hynEDOHw0wZI98oqa1_vkMacMOIXGDmzrX390Ik0vW3XChKvvjbpAA91ztnSgANWtRSRHlwetKPq2ri3PaB7MIXHiNv" style="border: none; transform: rotate(0rad);" width="512" /></span></div>
<span id="docs-internal-guid-b979450b-c9a4-49b7-f403-88e195e080ce"></span><br />
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: &quot;arial&quot;; font-size: 14.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"></span></div>
The Google I/O event shuttle buses are also being tracked and visualized in real time by an app we built using Firebase and Google Maps APIs. Within the Geo sandbox you can check out the app on the big screen and chat with the developers about how it works on the inside (hint: ask for Brett).<span id="docs-internal-guid-b979450b-c9a1-ca9a-0b28-9643bd2ba3af"></span><br />
<br />
Geo also hosted one session yesterday: <a href="https://events.google.com/io2016/schedule?sid=84621cfd-0bef-e511-a517-00155d5066d7#day1/84621cfd-0bef-e511-a517-00155d5066d7">Location and Proximity Superpowers: Eddystone + Google Beacon Platform</a>&nbsp;and we have several additional sessions on Thursday and Friday, including <a href="https://events.google.com/io2016/schedule?sid=89621cfd-0bef-e511-a517-00155d5066d7#day2/89621cfd-0bef-e511-a517-00155d5066d7">Understand your Place in this world</a> and <a href="https://events.google.com/io2016/schedule?sid=8e621cfd-0bef-e511-a517-00155d5066d7#day2/8e621cfd-0bef-e511-a517-00155d5066d7">Building geo services that scale</a>.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: &quot;arial&quot;; font-size: 14.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img height="480" src="https://lh3.googleusercontent.com/BmL6G9aSCTayncVXnOvAhniNgOmS0BqUll1CBJBUu1XVft90AdUCfa3cIJLuhdB9Hwt5bG--Ys7fnTXd4sKkYVuZG6eOhUAdgXhsOn4CvDl3euCLf73tE9GwjWcANyN10g0E_w_Q" style="border: none; transform: rotate(0rad);" width="640" /></span></div>
<span id="docs-internal-guid-b979450b-c9a1-700a-e8f3-3f26cc7edb11"></span><br />
Finally, don’t forget about our office hours—scheduled for Thursday, May 19 at 4pm. We’ll be in the tent for an hour...bring your Maps and Location questions for our Product Managers and Developer Advocates.]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/one-day-in-at-google-io/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Google Maps APIs Sessions Set for Google I/O</title>
		<link>https://googledata.org/google-maps/google-maps-apis-sessions-set-for-google-io/</link>
		<comments>https://googledata.org/google-maps/google-maps-apis-sessions-set-for-google-io/#comments</comments>
		<pubDate>Tue, 17 May 2016 14:40:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=684b477325253362b9eb08c90b096273</guid>
		<description><![CDATA[<span><i>Posted by Jac de Haan, Developer Marketing for the Google Maps APIs</i></span><br /><br />
Google I/O starts in just 24 hours! We&#8217;re looking forward to three days of insightful developer conversations, amazing technology and great weather. This year, Google Maps APIs engineers, technical support engineers, product managers, ux-ers, technical writers and developer advocates are traveling from Sydney, New York and Seattle to spend time in the Geo sandbox and demonstrate the power of our APIs. We'll also hold Office Hours to answer your implementation questions.<br /><div>
<span><img alt="IMG_20160516_171414.jpg" height="380" src="https://lh5.googleusercontent.com/4Y9dl_9owjDJ1bGIlKF37ZcgygUySa5ghLR4jwceCdKXJvyazSj00NFRFEUqBvjJBtWnL47RNy-ElOU7kVqb7daIdlk3ENm4T0y425qWU4txmiO6bhtOp9sP91U-Rpig71Y_NMVZ" width="507"></span></div>
<span></span><br />
Here are three of our featured sessions for this year&#8217;s event:<br /><br /><b>Understand your place in this world</b><br />
May 19, 9:00 AM<br />
Humans navigate a world made up of places with names, addresses and phone numbers&#8212;not lat/long coordinates. The Google Places API enables an app or website to present location data to users in a human-friendly fashion. In this session we&#8217;ll do a deep dive into how you can use the Places API to discover your environment. We&#8217;ll give detailed insights into how to use the APIs on web and mobile, show off some newly-released widgets, and take a look at how you can optimize for mobile device battery life. You&#8217;ll learn how the Places API can make all your apps&#8212; not just map-centric ones&#8212;smarter.<br /><br /><b>Building geo services that scale</b><br />
May 19, 2:00 PM<br />
Not all map and geo applications run entirely on your mobile device. Perhaps you want to protect your keys or other API access data from reverse engineering by putting them in the cloud, or you have custom business logic that you run on your server that you don't want to distribute via mobile. To protect your keys and API access data you'll need to operate some kind of service. In this session you'll learn how to build that service on the Google Cloud Platform and consume it in a mobile application that uses the Google Maps APIs.<br /><b><br /></b>
<b>Streamlining developer experiences with the Google Maps APIs</b><br />
May 20, 9:00 AM<br />
The Google Maps APIs provide a seamless experience for developers of all levels. Some want to offer a map or navigation but don't want to build these things themselves; this can be achieved with just a few lines of code. Other developers prefer to integrate natively with off-the-shelf widgets. Finally, some developers want complete control over every aspect of the presentation. This session will highlight the Maps APIs representing the full gamut of the developer experiences, enabling you to get going immediately and scale as necessary. You'll see how widgets and services can be added over time with a suite of Maps APIs, services and libraries.<br /><br />
We hope you&#8217;re able to attend at least one of these sessions to learn directly from Google Maps APIs experts. And, don&#8217;t forget to stop by the Geo sandbox to chat&#8212;just look for the big bus! If you&#8217;re not able to join us in person this year, you can always keep up with our activities via <a href="https://twitter.com/GoogleMapsAPI">Twitter</a> or <a href="https://plus.google.com/+GoogleMapsAPI">G+</a>.]]></description>
				<content:encoded><![CDATA[<span class="post-author"><i>Posted by Jac de Haan, Developer Marketing for the Google Maps APIs</i></span><br />
<br />
Google I/O starts in just 24 hours! We’re looking forward to three days of insightful developer conversations, amazing technology and great weather. This year, Google Maps APIs engineers, technical support engineers, product managers, ux-ers, technical writers and developer advocates are traveling from Sydney, New York and Seattle to spend time in the Geo sandbox and demonstrate the power of our APIs. We'll also hold Office Hours to answer your implementation questions.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: &quot;arial&quot;; font-size: 14.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="IMG_20160516_171414.jpg" height="380" src="https://lh5.googleusercontent.com/4Y9dl_9owjDJ1bGIlKF37ZcgygUySa5ghLR4jwceCdKXJvyazSj00NFRFEUqBvjJBtWnL47RNy-ElOU7kVqb7daIdlk3ENm4T0y425qWU4txmiO6bhtOp9sP91U-Rpig71Y_NMVZ" style="border: none; transform: rotate(0rad);" width="507" /></span></div>
<span id="docs-internal-guid-bcae7eca-bf27-301e-4ea6-a4131e3837ee"></span><br />
Here are three of our featured sessions for this year’s event:<br />
<br />
<b>Understand your place in this world</b><br />
May 19, 9:00 AM<br />
Humans navigate a world made up of places with names, addresses and phone numbers—not lat/long coordinates. The Google Places API enables an app or website to present location data to users in a human-friendly fashion. In this session we’ll do a deep dive into how you can use the Places API to discover your environment. We’ll give detailed insights into how to use the APIs on web and mobile, show off some newly-released widgets, and take a look at how you can optimize for mobile device battery life. You’ll learn how the Places API can make all your apps— not just map-centric ones—smarter.<br />
<br />
<b>Building geo services that scale</b><br />
May 19, 2:00 PM<br />
Not all map and geo applications run entirely on your mobile device. Perhaps you want to protect your keys or other API access data from reverse engineering by putting them in the cloud, or you have custom business logic that you run on your server that you don't want to distribute via mobile. To protect your keys and API access data you'll need to operate some kind of service. In this session you'll learn how to build that service on the Google Cloud Platform and consume it in a mobile application that uses the Google Maps APIs.<br />
<b><br /></b>
<b>Streamlining developer experiences with the Google Maps APIs</b><br />
May 20, 9:00 AM<br />
The Google Maps APIs provide a seamless experience for developers of all levels. Some want to offer a map or navigation but don't want to build these things themselves; this can be achieved with just a few lines of code. Other developers prefer to integrate natively with off-the-shelf widgets. Finally, some developers want complete control over every aspect of the presentation. This session will highlight the Maps APIs representing the full gamut of the developer experiences, enabling you to get going immediately and scale as necessary. You'll see how widgets and services can be added over time with a suite of Maps APIs, services and libraries.<br />
<br />
We hope you’re able to attend at least one of these sessions to learn directly from Google Maps APIs experts. And, don’t forget to stop by the Geo sandbox to chat—just look for the big bus! If you’re not able to join us in person this year, you can always keep up with our activities via <a href="https://twitter.com/GoogleMapsAPI">Twitter</a> or <a href="https://plus.google.com/+GoogleMapsAPI">G+</a>.]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/google-maps-apis-sessions-set-for-google-io/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Get our API Release Notes automagically via RSS</title>
		<link>https://googledata.org/google-maps/get-our-api-release-notes-automagically-via-rss/</link>
		<comments>https://googledata.org/google-maps/get-our-api-release-notes-automagically-via-rss/#comments</comments>
		<pubDate>Thu, 12 May 2016 18:41:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=0fc091b1f0331abd1b88f8c5748eb8e7</guid>
		<description><![CDATA[<span><i>Posted by Sarah Maddox, technical writer for the Google Maps APIs</i></span><br /><br />
The Google Maps APIs team are keen to ensure that our  customers and developer community has the most up to date and useful information about using our APIs. With that goal in mind, we&#8217;ve added RSS feeds to the Release Notes for all the Maps and Places APIs.<br /><br />
Until now, if you wanted to see news about our releases, you&#8217;d need to visit individual API release notes pages periodically. We don't typically announce bug-fix or other small releases via the blog or social media but these are often critical for segments of our developer community.<br /><br />
You can now subscribe to individual API feeds and receive updates automatically when release notes are published. We'll continue to publish all Release Notes on the website as well. Feeds available today:<br /><a href="https://developers.google.com/maps/documentation/android-api/releases?utm_source=mapsAndroid&#38;utm_medium=blog&#38;utm_campaign=releaseNotes">Google Maps Android API</a>&#160;<span><a href="https://developers.google.com/maps/documentation/android-api/feeds/releases.xml?utm_source=mapsAndroid&#38;utm_medium=blog&#38;utm_campaign=rssFeed"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" width="24"></a></span><br /><a href="https://developers.google.com/maps/documentation/ios-sdk/releases?utm_source=mapsIOS&#38;utm_medium=blog&#38;utm_campaign=releaseNotes">Google Maps SDK for iOS</a>&#160;<a href="https://developers.google.com/maps/documentation/ios-sdk/feeds/releases.xml?utm_source=mapsIOS&#38;utm_medium=blog&#38;utm_campaign=rssFeed"><span><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" width="24"></span></a><br /><a href="https://developers.google.com/maps/documentation/javascript/releases?utm_source=mapsJavaScript&#38;utm_medium=blog&#38;utm_campaign=releaseNotes">Google Maps JavaScript API</a>&#160;<span><a href="https://developers.google.com/maps/documentation/javascript/feeds/releases.xml?utm_source=mapsJavaScript&#38;utm_medium=blog&#38;utm_campaign=rssFeed"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" width="24"></a></span><br /><a href="https://developers.google.com/maps/documentation/directions/releases?utm_source=mapsDirections&#38;utm_medium=blog&#38;utm_campaign=releaseNotes">Google Maps Directions API</a>&#160;<a href="https://developers.google.com/maps/documentation/directions/feeds/releases.xml?utm_source=mapsDirections&#38;utm_medium=blog&#38;utm_campaign=rssFeed"><span><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" width="24"></span></a><br /><a href="https://developers.google.com/maps/documentation/distance-matrix/releases?utm_source=mapsDistanceMatrix&#38;utm_medium=blog&#38;utm_campaign=releaseNotes">Google Maps Distance Matrix API</a>&#160;<a href="https://developers.google.com/maps/documentation/distance-matrix/feeds/releases.xml?utm_source=mapsDistanceMatrix&#38;utm_medium=blog&#38;utm_campaign=rssFeed"><span><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" width="24"></span></a><br /><a href="https://developers.google.com/places/android-api/releases?utm_source=placesAndroid&#38;utm_medium=blog&#38;utm_campaign=releaseNotes">Google Places API for Android</a>&#160;<a href="https://developers.google.com/places/android-api/feeds/releases.xml?utm_source=placesAndroid&#38;utm_medium=blog&#38;utm_campaign=rssFeed"><span><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" width="24"></span></a><br /><a href="https://developers.google.com/places/ios-api/releases?utm_source=placesIOS&#38;utm_medium=blog&#38;utm_campaign=releaseNotes">Google Places API for iOS</a>&#160;<a href="https://developers.google.com/places/ios-api/feeds/releases.xml?utm_source=placesIOS&#38;utm_medium=blog&#38;utm_campaign=rssFeed"><span><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" width="24"></span></a><br /><a href="https://developers.google.com/maps/premium/android-releases?utm_source=mapsAndroidPremium&#38;utm_medium=blog&#38;utm_campaign=releaseNotes">Google Maps Android API Premium Plan</a>&#160;<a href="https://developers.google.com/maps/premium/feeds/android-releases.xml?utm_source=mapsAndroidPremium&#38;utm_medium=blog&#38;utm_campaign=rssFeed"><span><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" width="24"></span></a><br /><a href="https://developers.google.com/maps/premium/ios-releases?utm_source=mapsIOSPremium&#38;utm_medium=blog&#38;utm_campaign=releaseNotes">Google Maps SDK for iOS Premium Plan</a>&#160;<a href="https://developers.google.com/maps/premium/feeds/ios-releases.xml?utm_source=mapsIOSPremium&#38;utm_medium=blog&#38;utm_campaign=rssFeed"><span><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" width="24"></span></a><br /><br />
I&#8217;ve been a technical writer at Google since 2013. I love my job because it gives me the opportunity to play with code and words, and to make them play nicely with each other. Maps are beautiful, and the docs help people weave stories around geography and places.<br /><div>
<span><img alt="Sarah-034-hallo_2.JPG" height="243" src="https://lh3.googleusercontent.com/C2A2t_slsoMDUmUVkznh5oZRR8NKUI2iV-5Z4vL41ZbxTW4KW0diZxphDZodtus5ELjOVWiUMJmFq1PjuZZTwPfZSztvrqtBmeyVLDi56uNeTgq6g9xAOjTvDncKZmJY43p6DV87" width="348"></span></div>
<span></span><br />
I&#8217;ll be at I/O next week, so I hope to see you there at our Geo sandbox (just look for the bus). Happy mapping!]]></description>
				<content:encoded><![CDATA[<span class="post-author"><i>Posted by Sarah Maddox, technical writer for the Google Maps APIs</i></span><br />
<br />
The Google Maps APIs team are keen to ensure that our  customers and developer community has the most up to date and useful information about using our APIs. With that goal in mind, we’ve added RSS feeds to the Release Notes for all the Maps and Places APIs.<br />
<br />
Until now, if you wanted to see news about our releases, you’d need to visit individual API release notes pages periodically. We don't typically announce bug-fix or other small releases via the blog or social media but these are often critical for segments of our developer community.<br />
<br />
You can now subscribe to individual API feeds and receive updates automatically when release notes are published. We'll continue to publish all Release Notes on the website as well. Feeds available today:<br />
<a href="https://developers.google.com/maps/documentation/android-api/releases?utm_source=mapsAndroid&amp;utm_medium=blog&amp;utm_campaign=releaseNotes">Google Maps Android API</a>&nbsp;<span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><a href="https://developers.google.com/maps/documentation/android-api/feeds/releases.xml?utm_source=mapsAndroid&amp;utm_medium=blog&amp;utm_campaign=rssFeed" style="text-decoration: none;"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="24" /></a></span><br />
<a href="https://developers.google.com/maps/documentation/ios-sdk/releases?utm_source=mapsIOS&amp;utm_medium=blog&amp;utm_campaign=releaseNotes">Google Maps SDK for iOS</a>&nbsp;<a href="https://developers.google.com/maps/documentation/ios-sdk/feeds/releases.xml?utm_source=mapsIOS&amp;utm_medium=blog&amp;utm_campaign=rssFeed" style="text-decoration: none;"><span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="24" /></span></a><br />
<a href="https://developers.google.com/maps/documentation/javascript/releases?utm_source=mapsJavaScript&amp;utm_medium=blog&amp;utm_campaign=releaseNotes">Google Maps JavaScript API</a>&nbsp;<span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><a href="https://developers.google.com/maps/documentation/javascript/feeds/releases.xml?utm_source=mapsJavaScript&amp;utm_medium=blog&amp;utm_campaign=rssFeed" style="text-decoration: none;"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="24" /></a></span><br />
<a href="https://developers.google.com/maps/documentation/directions/releases?utm_source=mapsDirections&amp;utm_medium=blog&amp;utm_campaign=releaseNotes">Google Maps Directions API</a>&nbsp;<a href="https://developers.google.com/maps/documentation/directions/feeds/releases.xml?utm_source=mapsDirections&amp;utm_medium=blog&amp;utm_campaign=rssFeed" style="text-decoration: none;"><span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="24" /></span></a><br />
<a href="https://developers.google.com/maps/documentation/distance-matrix/releases?utm_source=mapsDistanceMatrix&amp;utm_medium=blog&amp;utm_campaign=releaseNotes">Google Maps Distance Matrix API</a>&nbsp;<a href="https://developers.google.com/maps/documentation/distance-matrix/feeds/releases.xml?utm_source=mapsDistanceMatrix&amp;utm_medium=blog&amp;utm_campaign=rssFeed" style="text-decoration: none;"><span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" style="border: none; transform: rotate(0rad);" width="24" /></span></a><br />
<a href="https://developers.google.com/places/android-api/releases?utm_source=placesAndroid&amp;utm_medium=blog&amp;utm_campaign=releaseNotes">Google Places API for Android</a>&nbsp;<a href="https://developers.google.com/places/android-api/feeds/releases.xml?utm_source=placesAndroid&amp;utm_medium=blog&amp;utm_campaign=rssFeed" style="text-decoration: none;"><span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="24" /></span></a><br />
<a href="https://developers.google.com/places/ios-api/releases?utm_source=placesIOS&amp;utm_medium=blog&amp;utm_campaign=releaseNotes">Google Places API for iOS</a>&nbsp;<a href="https://developers.google.com/places/ios-api/feeds/releases.xml?utm_source=placesIOS&amp;utm_medium=blog&amp;utm_campaign=rssFeed" style="text-decoration: none;"><span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="24" /></span></a><br />
<a href="https://developers.google.com/maps/premium/android-releases?utm_source=mapsAndroidPremium&amp;utm_medium=blog&amp;utm_campaign=releaseNotes">Google Maps Android API Premium Plan</a>&nbsp;<a href="https://developers.google.com/maps/premium/feeds/android-releases.xml?utm_source=mapsAndroidPremium&amp;utm_medium=blog&amp;utm_campaign=rssFeed" style="text-decoration: none;"><span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="24" /></span></a><br />
<a href="https://developers.google.com/maps/premium/ios-releases?utm_source=mapsIOSPremium&amp;utm_medium=blog&amp;utm_campaign=releaseNotes">Google Maps SDK for iOS Premium Plan</a>&nbsp;<a href="https://developers.google.com/maps/premium/feeds/ios-releases.xml?utm_source=mapsIOSPremium&amp;utm_medium=blog&amp;utm_campaign=rssFeed" style="text-decoration: none;"><span style="color: #1155cc; font-family: &quot;arial&quot;; font-size: 14.6667px; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"><img height="24" src="https://lh4.googleusercontent.com/uaOaKjc8iKXR8LkjeDQfvlf-nMN92Sf-ceAUJiijK5N7m4jhQaKiRaZ8mbGrVLxGpMb0RdqN1pas262cKGNOnU9wN6gZwBNJjsr2MkKv233SraX1TMgMnwnDSPwSn3I9MvzkS4mQ" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="24" /></span></a><br />
<br />
I’ve been a technical writer at Google since 2013. I love my job because it gives me the opportunity to play with code and words, and to make them play nicely with each other. Maps are beautiful, and the docs help people weave stories around geography and places.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: &quot;arial&quot;; font-size: 14.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img alt="Sarah-034-hallo_2.JPG" height="243" src="https://lh3.googleusercontent.com/C2A2t_slsoMDUmUVkznh5oZRR8NKUI2iV-5Z4vL41ZbxTW4KW0diZxphDZodtus5ELjOVWiUMJmFq1PjuZZTwPfZSztvrqtBmeyVLDi56uNeTgq6g9xAOjTvDncKZmJY43p6DV87" style="border: none; transform: rotate(0rad);" width="348" /></span></div>
<span id="docs-internal-guid-2d208cb9-a60e-ffa1-2949-d3719e8da271"></span><br />
I’ll be at I/O next week, so I hope to see you there at our Geo sandbox (just look for the bus). Happy mapping! ]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/get-our-api-release-notes-automagically-via-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Your trip to Argentina awaits in Street View</title>
		<link>https://googledata.org/google-earth/your-trip-to-argentina-awaits-in-street-view/</link>
		<comments>https://googledata.org/google-earth/your-trip-to-argentina-awaits-in-street-view/#comments</comments>
		<pubDate>Tue, 10 May 2016 03:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=1a356c58bdd3096672ba93720ccb3d4e</guid>
		<description><![CDATA[Have you ever wondered what it&#8217;s like to side across a glacier? Or how it feels to stretch your arms beneath a waterfall? Well, now you can see for yourself. In its more than 2.7 million square kilometers, Argentina is home of some of the most spectacular natural settings on the globe. Starting today in Street View, you can experience a selection of <a href="http://www.google.com/maps/streetview/#argentina-national-parks">Argentina&#8217;s most breathtaking national parks</a> right from your Google Maps app for <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&#38;hl=en&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC">Android</a> or <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC">iOS</a>. <br /><br />Standing at the foot of breathtaking falls in the <a href="https://www.google.com/maps/@-25.687517,-54.4435534,3a,75y,206.54h,84.69t/data=!3m6!1e1!3m4!1skIsa5GqA-ElPLKrC33ILjw!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Parque Nacional Iguaz&#250;</a>, you can almost feel the mist swirling around you. Not to be missed, the Iguaz&#250; waterfalls are one of the <a href="https://en.wikipedia.org/wiki/New7Wonders_of_Nature">New7Wonders of Nature</a>.<br /><br /><div><a href="https://4.bp.blogspot.com/-poiBEVLc_3I/VzEE_EpYEeI/AAAAAAAAE3g/thKz6PGdeegMDUOwjedE-tun62IKh83lgCLcB/s1600/Screen%2BShot%2B2016-05-06%2Bat%2B8.34.01%2BAM.png"><img border="0" height="368" src="https://4.bp.blogspot.com/-poiBEVLc_3I/VzEE_EpYEeI/AAAAAAAAE3g/thKz6PGdeegMDUOwjedE-tun62IKh83lgCLcB/s640/Screen%2BShot%2B2016-05-06%2Bat%2B8.34.01%2BAM.png" width="640"></a></div><div><a href="https://www.google.com/maps/@-25.687517,-54.4435534,3a,75y,206.54h,84.69t/data=!3m6!1e1!3m4!1skIsa5GqA-ElPLKrC33ILjw!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Parque Nacional Iguaz&#250; - Isla San Martin, Argentina</a></div><br />No trip to Argentina is complete without gazing at the glorious <a href="https://www.google.com/maps/@-50.4589498,-73.0521514,3a,75y,192.73h,85.18t/data=!3m6!1e1!3m4!1sttxa5dtUMevosiIj3T67RQ!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Perito Moreno Glacier</a> in the Los Glaciares National Park. The ice is 30 km in length and is one of 48 glaciers fed by the Southern Patagonian Ice Field&#8212;the world's third largest reserve of fresh water.<br /><br /><div><a href="https://3.bp.blogspot.com/-_5DhdrqV1B0/VzEFL56Vl-I/AAAAAAAAE3k/vaIhrC9a1PUmKLgQ8MRiUG5iVsJWzrJKQCLcB/s1600/Screen%2BShot%2B2016-05-06%2Bat%2B10.35.07%2BAM.png"><img border="0" height="368" src="https://3.bp.blogspot.com/-_5DhdrqV1B0/VzEFL56Vl-I/AAAAAAAAE3k/vaIhrC9a1PUmKLgQ8MRiUG5iVsJWzrJKQCLcB/s640/Screen%2BShot%2B2016-05-06%2Bat%2B10.35.07%2BAM.png" width="640"></a></div><div><a href="https://www.google.com/maps/@-50.4589498,-73.0521514,3a,75y,192.73h,85.18t/data=!3m6!1e1!3m4!1sttxa5dtUMevosiIj3T67RQ!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Parque Nacional Los Glaciares - Perito Moreno, Argentina</a></div><br />This is only the tip of the iceberg (or should we say glacier?). Experience even more of Argentina in Street View in Google Maps in our <a href="http://www.google.com/maps/streetview/#argentina-national-parks">Street View Gallery</a>.<br /><br />Posted by Maite Iturria Arrospide, Program Manager for Google Maps]]></description>
				<content:encoded><![CDATA[Have you ever wondered what it’s like to side across a glacier? Or how it feels to stretch your arms beneath a waterfall? Well, now you can see for yourself. In its more than 2.7 million square kilometers, Argentina is home of some of the most spectacular natural settings on the globe. Starting today in Street View, you can experience a selection of <a href="http://www.google.com/maps/streetview/#argentina-national-parks">Argentina’s most breathtaking national parks</a> right from your Google Maps app for <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&amp;hl=en&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC">Android</a> or <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC">iOS</a>. <br /><br />Standing at the foot of breathtaking falls in the <a href="https://www.google.com/maps/@-25.687517,-54.4435534,3a,75y,206.54h,84.69t/data=!3m6!1e1!3m4!1skIsa5GqA-ElPLKrC33ILjw!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Parque Nacional Iguazú</a>, you can almost feel the mist swirling around you. Not to be missed, the Iguazú waterfalls are one of the <a href="https://en.wikipedia.org/wiki/New7Wonders_of_Nature">New7Wonders of Nature</a>.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-poiBEVLc_3I/VzEE_EpYEeI/AAAAAAAAE3g/thKz6PGdeegMDUOwjedE-tun62IKh83lgCLcB/s1600/Screen%2BShot%2B2016-05-06%2Bat%2B8.34.01%2BAM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://4.bp.blogspot.com/-poiBEVLc_3I/VzEE_EpYEeI/AAAAAAAAE3g/thKz6PGdeegMDUOwjedE-tun62IKh83lgCLcB/s640/Screen%2BShot%2B2016-05-06%2Bat%2B8.34.01%2BAM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/@-25.687517,-54.4435534,3a,75y,206.54h,84.69t/data=!3m6!1e1!3m4!1skIsa5GqA-ElPLKrC33ILjw!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Parque Nacional Iguazú - Isla San Martin, Argentina</a></div><br />No trip to Argentina is complete without gazing at the glorious <a href="https://www.google.com/maps/@-50.4589498,-73.0521514,3a,75y,192.73h,85.18t/data=!3m6!1e1!3m4!1sttxa5dtUMevosiIj3T67RQ!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Perito Moreno Glacier</a> in the Los Glaciares National Park. The ice is 30 km in length and is one of 48 glaciers fed by the Southern Patagonian Ice Field—the world's third largest reserve of fresh water.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-_5DhdrqV1B0/VzEFL56Vl-I/AAAAAAAAE3k/vaIhrC9a1PUmKLgQ8MRiUG5iVsJWzrJKQCLcB/s1600/Screen%2BShot%2B2016-05-06%2Bat%2B10.35.07%2BAM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://3.bp.blogspot.com/-_5DhdrqV1B0/VzEFL56Vl-I/AAAAAAAAE3k/vaIhrC9a1PUmKLgQ8MRiUG5iVsJWzrJKQCLcB/s640/Screen%2BShot%2B2016-05-06%2Bat%2B10.35.07%2BAM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/@-50.4589498,-73.0521514,3a,75y,192.73h,85.18t/data=!3m6!1e1!3m4!1sttxa5dtUMevosiIj3T67RQ!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Parque Nacional Los Glaciares - Perito Moreno, Argentina</a></div><br />This is only the tip of the iceberg (or should we say glacier?). Experience even more of Argentina in Street View in Google Maps in our <a href="http://www.google.com/maps/streetview/#argentina-national-parks">Street View Gallery</a>.<br /><br />Posted by Maite Iturria Arrospide, Program Manager for Google Maps]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/your-trip-to-argentina-awaits-in-street-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Get around Rio with indoor maps of 2016 Olympic venues</title>
		<link>https://googledata.org/google-earth/get-around-rio-with-indoor-maps-of-2016-olympic-venues/</link>
		<comments>https://googledata.org/google-earth/get-around-rio-with-indoor-maps-of-2016-olympic-venues/#comments</comments>
		<pubDate>Tue, 03 May 2016 19:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=f868bcc4461f73e7e6d2e788cf6356d5</guid>
		<description><![CDATA[More than 10,000 athletes, half a million travelers and tens of thousands of volunteers are expected to join the roughly 6 million residents of Rio de Janeiro this summer for the 2016 Olympic Games. Over the next few months we&#8217;re making a variety of updates and additions to Google Maps to ensure Rio residents and visitors alike can easily get around once the torch is in town. <br /><br />A few weeks ago we launched real-time transit in Rio de Janeiro. Now for the first time ever, you&#8217;ll be able to see indoor maps for 25 official indoor venues and enhanced outdoor maps of 12 official outdoor venues of the upcoming Olympic Games on Google Maps for desktop, Android and iOS. <br /><br />Using indoor maps is easy. Just open Google Maps on your computer or mobile phone, search for a place that has indoor maps, zoom into the place, and click on it. At the bottom right side of the screen, choose among the floors and levels of the building. Points of interest like concessions, restrooms, information desks, and ATM machines are highlighted for easy identification.<br /><br />Whether planning to attend the Games or just daydreaming about an Olympic getaway, you can view indoor maps of the venues on Google Maps. Here&#8217;s a sneak peek:<br /><br /><div><a href="https://2.bp.blogspot.com/-DHvZIZyVjQo/Vyjw4epP4RI/AAAAAAAAE3E/4C3EGEb5stU809OubjwHAK35iTC7xDtRQCLcB/s1600/Screen%2BShot%2B2016-05-02%2Bat%2B10.21.28%2BAM.png"><img border="0" height="360" src="https://2.bp.blogspot.com/-DHvZIZyVjQo/Vyjw4epP4RI/AAAAAAAAE3E/4C3EGEb5stU809OubjwHAK35iTC7xDtRQCLcB/s640/Screen%2BShot%2B2016-05-02%2Bat%2B10.21.28%2BAM.png" width="640"></a></div><br /><br />The opening ceremony will kick off the Games at the iconic&#160;<a href="https://www.google.com/maps/place/R.+Prof.+Eur%C3%ADco+Rab%C3%AAlo+-+Maracan%C3%A3,+Rio+de+Janeiro+-+RJ,+20271-150,+Brazil/@-22.9120842,-43.2312206,18z/data=!3m1!5s0x997e5e801e7d43:0xe2320e120f9a45f5!4m6!1m3!3m2!1s0x997e5dba888b0d:0xf5f33188ee6274e5!2zTWFyYWNhbsOj!3m1!1s0x997e5e86bd5a21:0x27c197534e58ac51">Maracana&#771;</a>, where matches for one of the most popular events will take place&#8212;f&#250;tbol.<br /><br /><div><a href="https://1.bp.blogspot.com/-aBV3o8RpkJI/VyjxDEkZ9MI/AAAAAAAAE3I/ogBUlRABlkQapO-8Hon5TwzF8HUl9BWKgCLcB/s1600/IMG_4481.PNG"><img border="0" height="640" src="https://1.bp.blogspot.com/-aBV3o8RpkJI/VyjxDEkZ9MI/AAAAAAAAE3I/ogBUlRABlkQapO-8Hon5TwzF8HUl9BWKgCLcB/s640/IMG_4481.PNG" width="360"></a></div><br />The new&#160;<a href="https://www.google.com/maps/place/Future+Arena/@-22.9804962,-43.3926839,19z/data=!3m1!5s0x9bdbe94aa3fb2b:0xad0170a7aef1b9a0!4m2!3m1!1s0x9bdbeeb4c68873:0x757d740b2888206b">Future Arena</a>&#160;will house handball games. Eventually, it will be taken apart and repurposed to build four public schools.<br /><br /><div><a href="https://2.bp.blogspot.com/-kUi5y-AnHyU/VyjxL6Vy_BI/AAAAAAAAE3M/cwnNedXygHQZJfmPCrkv0LI62zyKM4gHgCLcB/s1600/Screenshot_2016-05-02-13-57-04.png"><img border="0" height="640" src="https://2.bp.blogspot.com/-kUi5y-AnHyU/VyjxL6Vy_BI/AAAAAAAAE3M/cwnNedXygHQZJfmPCrkv0LI62zyKM4gHgCLcB/s640/Screenshot_2016-05-02-13-57-04.png" width="360"></a></div><br />Golf is back at the Olympics after a 112-year hiatus. The competition will take place at the custom made 18-hole&#160;<a href="https://www.google.com/maps/place/Olympic+Golf+Course/@-23.0065423,-43.4100562,16z/data=!4m2!3m1!1s0x9bdc80027254e3:0x23fafc73a5cd2290">Olympic Golf Course</a>.<br /><br />Not heading to the Olympics? Don&#8217;t worry. With more than 3 billion square feet of indoor maps <a href="https://support.google.com/maps/answer/1685827">globally</a>, Google Maps can help you get around the venues you're visiting this summer&#8212;whether you're cheering on the athletes in Rio, or closer to home. <br /><br /><i>Posted by Marcus Leal, Google Maps Product Manager, Latin America</i>]]></description>
				<content:encoded><![CDATA[More than 10,000 athletes, half a million travelers and tens of thousands of volunteers are expected to join the roughly 6 million residents of Rio de Janeiro this summer for the 2016 Olympic Games. Over the next few months we’re making a variety of updates and additions to Google Maps to ensure Rio residents and visitors alike can easily get around once the torch is in town. <br /><br />A few weeks ago we launched real-time transit in Rio de Janeiro. Now for the first time ever, you’ll be able to see indoor maps for 25 official indoor venues and enhanced outdoor maps of 12 official outdoor venues of the upcoming Olympic Games on Google Maps for desktop, Android and iOS. <br /><br />Using indoor maps is easy. Just open Google Maps on your computer or mobile phone, search for a place that has indoor maps, zoom into the place, and click on it. At the bottom right side of the screen, choose among the floors and levels of the building. Points of interest like concessions, restrooms, information desks, and ATM machines are highlighted for easy identification.<br /><br />Whether planning to attend the Games or just daydreaming about an Olympic getaway, you can view indoor maps of the venues on Google Maps. Here’s a sneak peek:<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-DHvZIZyVjQo/Vyjw4epP4RI/AAAAAAAAE3E/4C3EGEb5stU809OubjwHAK35iTC7xDtRQCLcB/s1600/Screen%2BShot%2B2016-05-02%2Bat%2B10.21.28%2BAM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="360" src="https://2.bp.blogspot.com/-DHvZIZyVjQo/Vyjw4epP4RI/AAAAAAAAE3E/4C3EGEb5stU809OubjwHAK35iTC7xDtRQCLcB/s640/Screen%2BShot%2B2016-05-02%2Bat%2B10.21.28%2BAM.png" width="640" /></a></div><br /><br />The opening ceremony will kick off the Games at the iconic&nbsp;<a href="https://www.google.com/maps/place/R.+Prof.+Eur%C3%ADco+Rab%C3%AAlo+-+Maracan%C3%A3,+Rio+de+Janeiro+-+RJ,+20271-150,+Brazil/@-22.9120842,-43.2312206,18z/data=!3m1!5s0x997e5e801e7d43:0xe2320e120f9a45f5!4m6!1m3!3m2!1s0x997e5dba888b0d:0xf5f33188ee6274e5!2zTWFyYWNhbsOj!3m1!1s0x997e5e86bd5a21:0x27c197534e58ac51">Maracanã</a>, where matches for one of the most popular events will take place—fútbol.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-aBV3o8RpkJI/VyjxDEkZ9MI/AAAAAAAAE3I/ogBUlRABlkQapO-8Hon5TwzF8HUl9BWKgCLcB/s1600/IMG_4481.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="https://1.bp.blogspot.com/-aBV3o8RpkJI/VyjxDEkZ9MI/AAAAAAAAE3I/ogBUlRABlkQapO-8Hon5TwzF8HUl9BWKgCLcB/s640/IMG_4481.PNG" width="360" /></a></div><br />The new&nbsp;<a href="https://www.google.com/maps/place/Future+Arena/@-22.9804962,-43.3926839,19z/data=!3m1!5s0x9bdbe94aa3fb2b:0xad0170a7aef1b9a0!4m2!3m1!1s0x9bdbeeb4c68873:0x757d740b2888206b">Future Arena</a>&nbsp;will house handball games. Eventually, it will be taken apart and repurposed to build four public schools.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-kUi5y-AnHyU/VyjxL6Vy_BI/AAAAAAAAE3M/cwnNedXygHQZJfmPCrkv0LI62zyKM4gHgCLcB/s1600/Screenshot_2016-05-02-13-57-04.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="https://2.bp.blogspot.com/-kUi5y-AnHyU/VyjxL6Vy_BI/AAAAAAAAE3M/cwnNedXygHQZJfmPCrkv0LI62zyKM4gHgCLcB/s640/Screenshot_2016-05-02-13-57-04.png" width="360" /></a></div><br />Golf is back at the Olympics after a 112-year hiatus. The competition will take place at the custom made 18-hole&nbsp;<a href="https://www.google.com/maps/place/Olympic+Golf+Course/@-23.0065423,-43.4100562,16z/data=!4m2!3m1!1s0x9bdc80027254e3:0x23fafc73a5cd2290">Olympic Golf Course</a>.<br /><br />Not heading to the Olympics? Don’t worry. With more than 3 billion square feet of indoor maps <a href="https://support.google.com/maps/answer/1685827">globally</a>, Google Maps can help you get around the venues you're visiting this summer—whether you're cheering on the athletes in Rio, or closer to home. <br /><br /><i>Posted by Marcus Leal, Google Maps Product Manager, Latin America</i>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/get-around-rio-with-indoor-maps-of-2016-olympic-venues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>A Street View salute to travel and tourism in the US</title>
		<link>https://googledata.org/google-earth/a-street-view-salute-to-travel-and-tourism-in-the-us/</link>
		<comments>https://googledata.org/google-earth/a-street-view-salute-to-travel-and-tourism-in-the-us/#comments</comments>
		<pubDate>Tue, 03 May 2016 16:30:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=88329ddb891dfede732f28a880643897</guid>
		<description><![CDATA[To celebrate <a href="https://www.ustravel.org/events/national-travel-and-tourism-week">National Travel and Tourism Week</a>, Google Maps is releasing some new scenic Street View sights across the US collected with our partners in the <a href="https://docs.google.com/a/google.com/forms/d/1_0nLwIi4L4yUhO4wuaMWNh9sYkX_YponLlGgmiijaxY/viewform">Trekker Loan Program</a>. In anticipation of the warm summer months ahead, discover and explore botanical gardens tours, historic boardwalks cruises and stunning city views all in your Google Maps app for <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&#38;hl=en&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC">Android</a> and <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC">iOS</a>.<br /><br />Beginning our tour in Texas, working with our partners at the <a href="http://www.austintexas.org/">Austin Convention and Visitors Bureau</a>, you can take a summer dip in the pristine <a href="https://www.google.com/maps/@30.3421932,-98.1269407,3a,75y,319.74h,86.07t/data=!3m6!1e1!3m4!1syOWc0_KL9-uiacNKUONpxQ!2e0!7i13312!8i6656">Hamilton Pool</a>, a popular swimming hole for tourists and residents alike. Heading west to El Paso with our partners at <a href="http://visitelpaso.com/">Visit El Paso</a>, you can take a breathtaking walk through <a href="https://www.google.com/maps/@31.9203227,-106.041643,3a,75y,90t/data=!3m6!1e1!3m4!1smbV9Hx3zMFMYWWl9P1767g!2e0!7i13312!8i6656">Hueco Tanks State Park</a>, where rock climbers and hikers delight in the winding trails through canyons filled with unique bird species and botanicals. And for those in Houston, a stroll through <a href="https://www.google.com/maps/@29.7098892,-95.3873104,3a,75y,234.66h,82.2t/data=!3m6!1e1!3m4!1se7mCf3ADak2hWK1Mxdh-kA!2e0!7i13312!8i6656">Hermann Park</a> thanks to <a href="http://houstonparksboard.org/">Houston Parks Board</a>, provides a scenic getaway in the heart of the city where visitors can enjoy a bit of recreation and relaxation. <br /><br /><div><a href="https://3.bp.blogspot.com/-o6PVwaMz2HY/VyjBEvgKEuI/AAAAAAAAE2k/eqDxK0uRLbMPWoVRG75WBpWv2XMdrMihgCLcB/s1600/Screen%2BShot%2B2016-05-02%2Bat%2B10.10.04%2BAM.png"><img border="0" height="368" src="https://3.bp.blogspot.com/-o6PVwaMz2HY/VyjBEvgKEuI/AAAAAAAAE2k/eqDxK0uRLbMPWoVRG75WBpWv2XMdrMihgCLcB/s640/Screen%2BShot%2B2016-05-02%2Bat%2B10.10.04%2BAM.png" width="640"></a></div><div><a href="https://www.google.com/maps/@30.3421932,-98.1269407,3a,75y,319.74h,86.07t/data=!3m6!1e1!3m4!1syOWc0_KL9-uiacNKUONpxQ!2e0!7i13312!8i6656">Hamilton Pool, Austin, Texas</a></div><br />Heading east, you&#8217;ll find Mississippi's scenic summer offerings from our partners at <a href="http://www.gulfcoast.org/">Visit Mississippi Gulf Coast</a>. First you can enjoy the natural beauty of the <a href="https://www.google.com/maps/@30.4519188,-88.652126,3a,75y,90t/data=!3m6!1e1!3m4!1sIeuy2_2zClj-5LrMggGBuQ!2e0!7i13312!8i6656">Mississippi Sandhill Crane National Wildlife Refuge</a>, where the endangered <a href="https://www.fws.gov/refuge/mississippi_sandhill_crane/">sandhill cranes</a> hail during their migration patterns. You can also enjoy the afternoon sun at the <a href="https://www.google.com/maps/@30.3406958,-88.5340303,3a,75y,116.67h,77.44t/data=!3m6!1e1!3m4!1s68xeDoiqSNE_w7y7ihc-cA!2e0!7i13312!8i6656">Pascagoula Beach Park and Recreation Area</a>.<br /><br /><div><a href="https://4.bp.blogspot.com/-8iXxw0d2Hpc/VyjBt6awfSI/AAAAAAAAE2s/J8foFjyHJMYZb0Bi92uQU-Jm6v8PkyOdwCLcB/s1600/Screen%2BShot%2B2016-05-02%2Bat%2B2.13.30%2BPM.png"><img border="0" height="368" src="https://4.bp.blogspot.com/-8iXxw0d2Hpc/VyjBt6awfSI/AAAAAAAAE2s/J8foFjyHJMYZb0Bi92uQU-Jm6v8PkyOdwCLcB/s640/Screen%2BShot%2B2016-05-02%2Bat%2B2.13.30%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/maps/@30.4519188,-88.652126,3a,75y,90t/data=!3m6!1e1!3m4!1sIeuy2_2zClj-5LrMggGBuQ!2e0!7i13312!8i6656">Mississippi Sandhill Crane National Wildlife Refuge</a></div><br />End your tour in the northwest, where national parks are plentiful and the natural views will leave you breathless. In Oregon, with our partners at <a href="http://www.eugenecascadescoast.org/">Travel Lane County</a>, you can see the <a href="https://www.google.com/maps/@44.1373051,-124.1281704,3a,75y,343.19h,111.7t/data=!3m6!1e1!3m4!1sc8HHl1ZJNIpiZhJx4hkKCw!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Heceta Head Lighthouse</a>, the most photographed lighthouse on the West Coast. Then see if you can uncover the winding trail to <a href="https://www.google.com/maps/@43.6104266,-122.1287292,3a,75y,30h,78.18t/data=!3m6!1e1!3m4!1sa9PbrPHMNHtr5uyb7ETv6g!2e0!7i13312!8i6656">Salt Creek Falls</a>, Oregon&#8217;s second tallest waterfall.<br /><br /><div><a href="https://3.bp.blogspot.com/-XwdFA6SP4xA/VyjCFNsDhRI/AAAAAAAAE2w/s65eT-m6A7ku54K5Khn8jhJZICQzVxFUwCLcB/s1600/Screen%2BShot%2B2016-05-02%2Bat%2B3.04.15%2BPM.png"><img border="0" height="366" src="https://3.bp.blogspot.com/-XwdFA6SP4xA/VyjCFNsDhRI/AAAAAAAAE2w/s65eT-m6A7ku54K5Khn8jhJZICQzVxFUwCLcB/s640/Screen%2BShot%2B2016-05-02%2Bat%2B3.04.15%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/maps/@44.1373051,-124.1281704,3a,75y,343.19h,111.7t/data=!3m6!1e1!3m4!1sc8HHl1ZJNIpiZhJx4hkKCw!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Heceta Head Lighthouse, Oregon</a></div><br />America&#8217;s unique history and beauty make it a great destination. To see more sites, explore our <a href="https://www.google.com/maps/streetview/#us-highlights">U.S. Highlights Gallery</a>.<br /><br />Posted by Posted by Susan Cadrecha, Google Maps Communications Manager]]></description>
				<content:encoded><![CDATA[To celebrate <a href="https://www.ustravel.org/events/national-travel-and-tourism-week">National Travel and Tourism Week</a>, Google Maps is releasing some new scenic Street View sights across the US collected with our partners in the <a href="https://docs.google.com/a/google.com/forms/d/1_0nLwIi4L4yUhO4wuaMWNh9sYkX_YponLlGgmiijaxY/viewform">Trekker Loan Program</a>. In anticipation of the warm summer months ahead, discover and explore botanical gardens tours, historic boardwalks cruises and stunning city views all in your Google Maps app for <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&amp;hl=en&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC">Android</a> and <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC">iOS</a>.<br /><br />Beginning our tour in Texas, working with our partners at the <a href="http://www.austintexas.org/">Austin Convention and Visitors Bureau</a>, you can take a summer dip in the pristine <a href="https://www.google.com/maps/@30.3421932,-98.1269407,3a,75y,319.74h,86.07t/data=!3m6!1e1!3m4!1syOWc0_KL9-uiacNKUONpxQ!2e0!7i13312!8i6656">Hamilton Pool</a>, a popular swimming hole for tourists and residents alike. Heading west to El Paso with our partners at <a href="http://visitelpaso.com/">Visit El Paso</a>, you can take a breathtaking walk through <a href="https://www.google.com/maps/@31.9203227,-106.041643,3a,75y,90t/data=!3m6!1e1!3m4!1smbV9Hx3zMFMYWWl9P1767g!2e0!7i13312!8i6656">Hueco Tanks State Park</a>, where rock climbers and hikers delight in the winding trails through canyons filled with unique bird species and botanicals. And for those in Houston, a stroll through <a href="https://www.google.com/maps/@29.7098892,-95.3873104,3a,75y,234.66h,82.2t/data=!3m6!1e1!3m4!1se7mCf3ADak2hWK1Mxdh-kA!2e0!7i13312!8i6656">Hermann Park</a> thanks to <a href="http://houstonparksboard.org/">Houston Parks Board</a>, provides a scenic getaway in the heart of the city where visitors can enjoy a bit of recreation and relaxation. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-o6PVwaMz2HY/VyjBEvgKEuI/AAAAAAAAE2k/eqDxK0uRLbMPWoVRG75WBpWv2XMdrMihgCLcB/s1600/Screen%2BShot%2B2016-05-02%2Bat%2B10.10.04%2BAM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://3.bp.blogspot.com/-o6PVwaMz2HY/VyjBEvgKEuI/AAAAAAAAE2k/eqDxK0uRLbMPWoVRG75WBpWv2XMdrMihgCLcB/s640/Screen%2BShot%2B2016-05-02%2Bat%2B10.10.04%2BAM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/@30.3421932,-98.1269407,3a,75y,319.74h,86.07t/data=!3m6!1e1!3m4!1syOWc0_KL9-uiacNKUONpxQ!2e0!7i13312!8i6656">Hamilton Pool, Austin, Texas</a></div><br />Heading east, you’ll find Mississippi's scenic summer offerings from our partners at <a href="http://www.gulfcoast.org/">Visit Mississippi Gulf Coast</a>. First you can enjoy the natural beauty of the <a href="https://www.google.com/maps/@30.4519188,-88.652126,3a,75y,90t/data=!3m6!1e1!3m4!1sIeuy2_2zClj-5LrMggGBuQ!2e0!7i13312!8i6656">Mississippi Sandhill Crane National Wildlife Refuge</a>, where the endangered <a href="https://www.fws.gov/refuge/mississippi_sandhill_crane/">sandhill cranes</a> hail during their migration patterns. You can also enjoy the afternoon sun at the <a href="https://www.google.com/maps/@30.3406958,-88.5340303,3a,75y,116.67h,77.44t/data=!3m6!1e1!3m4!1s68xeDoiqSNE_w7y7ihc-cA!2e0!7i13312!8i6656">Pascagoula Beach Park and Recreation Area</a>.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-8iXxw0d2Hpc/VyjBt6awfSI/AAAAAAAAE2s/J8foFjyHJMYZb0Bi92uQU-Jm6v8PkyOdwCLcB/s1600/Screen%2BShot%2B2016-05-02%2Bat%2B2.13.30%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://4.bp.blogspot.com/-8iXxw0d2Hpc/VyjBt6awfSI/AAAAAAAAE2s/J8foFjyHJMYZb0Bi92uQU-Jm6v8PkyOdwCLcB/s640/Screen%2BShot%2B2016-05-02%2Bat%2B2.13.30%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/@30.4519188,-88.652126,3a,75y,90t/data=!3m6!1e1!3m4!1sIeuy2_2zClj-5LrMggGBuQ!2e0!7i13312!8i6656">Mississippi Sandhill Crane National Wildlife Refuge</a></div><br />End your tour in the northwest, where national parks are plentiful and the natural views will leave you breathless. In Oregon, with our partners at <a href="http://www.eugenecascadescoast.org/">Travel Lane County</a>, you can see the <a href="https://www.google.com/maps/@44.1373051,-124.1281704,3a,75y,343.19h,111.7t/data=!3m6!1e1!3m4!1sc8HHl1ZJNIpiZhJx4hkKCw!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Heceta Head Lighthouse</a>, the most photographed lighthouse on the West Coast. Then see if you can uncover the winding trail to <a href="https://www.google.com/maps/@43.6104266,-122.1287292,3a,75y,30h,78.18t/data=!3m6!1e1!3m4!1sa9PbrPHMNHtr5uyb7ETv6g!2e0!7i13312!8i6656">Salt Creek Falls</a>, Oregon’s second tallest waterfall.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-XwdFA6SP4xA/VyjCFNsDhRI/AAAAAAAAE2w/s65eT-m6A7ku54K5Khn8jhJZICQzVxFUwCLcB/s1600/Screen%2BShot%2B2016-05-02%2Bat%2B3.04.15%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="366" src="https://3.bp.blogspot.com/-XwdFA6SP4xA/VyjCFNsDhRI/AAAAAAAAE2w/s65eT-m6A7ku54K5Khn8jhJZICQzVxFUwCLcB/s640/Screen%2BShot%2B2016-05-02%2Bat%2B3.04.15%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/@44.1373051,-124.1281704,3a,75y,343.19h,111.7t/data=!3m6!1e1!3m4!1sc8HHl1ZJNIpiZhJx4hkKCw!2e0!7i13312!8i6656?expflags=__data_rollout__Tactile.IsDogfoodRollout__launched__%3Afalse%2C__data_rollout__Tactile.IsFishfoodRollout__launched__%3Afalse">Heceta Head Lighthouse, Oregon</a></div><br />America’s unique history and beauty make it a great destination. To see more sites, explore our <a href="https://www.google.com/maps/streetview/#us-highlights">U.S. Highlights Gallery</a>.<br /><br />Posted by Posted by Susan Cadrecha, Google Maps Communications Manager]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/a-street-view-salute-to-travel-and-tourism-in-the-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Sydney Opera House sets sail on Street View</title>
		<link>https://googledata.org/google-earth/sydney-opera-house-sets-sail-on-street-view/</link>
		<comments>https://googledata.org/google-earth/sydney-opera-house-sets-sail-on-street-view/#comments</comments>
		<pubDate>Wed, 27 Apr 2016 01:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=82df4cf02099bf2bbe4ee33616f2d642</guid>
		<description><![CDATA[Perched on Bennelong Point in Sydney Harbour, the Sydney Opera House is an Australian icon.  Visited <a href="http://www.sydneyoperahouse.com/about/media_room.aspx">by millions of people</a> each year, this architectural masterpiece can now be explored right from your Android or iPhone in Google Maps with the launch of the <a href="https://www.google.com.au/maps/streetview/#sydney-opera-house">Sydney Opera House on Street View</a>. <br /><br />With this new collection, you can stand on the steps of the Opera House and <a href="https://www.google.com/maps/@-33.8573944,151.2154351,0a,82.2y,309.95h,106.76t/data=!3m4!1e1!3m2!1sZo5n3mVo5CjkghdlowKPow!2e0?source=apiv3">gaze at the white sails</a>, look out at <a href="https://www.google.com/maps/@-33.8572825,151.2146259,3a,75y,334.37h,86.22t/data=!3m6!1e1!3m4!1sxZhD5FT6sDzxnHPhmGuUDg!2e0!7i13312!8i6656">Sydney&#8217;s Harbour Bridge</a>, or take in the hustle and bustle of <a href="https://www.google.com/maps/@-33.8577088,151.2149271,3a,75y,260.62h,86.87t/data=!3m6!1e1!3m4!1skah0_LVZnWdwDdNTRS9mPA!2e0!7i13312!8i6656">Circular Quay</a> in 360-degree panoramic imagery from wherever you are.<br /><div><a href="https://3.bp.blogspot.com/-9Y-6Hf4PeC0/Vx9UHn6leCI/AAAAAAAAE1Q/rwnAjbAk6OkVHbybAo1H4nxyXgJXd_LrACLcB/s1600/Screen%2BShot%2B2016-04-26%2Bat%2B12.41.52%2BPM.png"><img border="0" height="368" src="https://3.bp.blogspot.com/-9Y-6Hf4PeC0/Vx9UHn6leCI/AAAAAAAAE1Q/rwnAjbAk6OkVHbybAo1H4nxyXgJXd_LrACLcB/s640/Screen%2BShot%2B2016-04-26%2Bat%2B12.41.52%2BPM.png" width="640"></a></div><br />Feel what it&#8217;s like to stand on the stage of the <a href="https://www.google.com/maps/@-33.8569646,151.2149478,3a,82.2y,1.71h,90.6t/data=!3m6!1e1!3m4!1sQODPuUB6khTHUYujNCL8Lg!2e0!7i13312!8i6656">Concert Hall</a> and look up at the <a href="https://www.google.com/culturalinstitute/u/0/asset-viewer/acoustic-clouds/kwGvOr4hoPwXLw?exhibitId=gwLiOCWoUk-yLw">acoustic clouds</a>. <br /><br /><div><a href="https://1.bp.blogspot.com/-wQyP57of0dQ/Vx9T3nAcTcI/AAAAAAAAE1I/9W7mGdVKiEAwU1TjDvMBNZv0mOkW5VRCQCLcB/s1600/Screen%2BShot%2B2016-04-26%2Bat%2B12.40.41%2BPM.png"><img border="0" height="368" src="https://1.bp.blogspot.com/-wQyP57of0dQ/Vx9T3nAcTcI/AAAAAAAAE1I/9W7mGdVKiEAwU1TjDvMBNZv0mOkW5VRCQCLcB/s640/Screen%2BShot%2B2016-04-26%2Bat%2B12.40.41%2BPM.png" width="640"></a></div><br />And go behind-the-scenes to spaces rarely seen by the public, like the stage of the <a href="https://www.google.com/maps/@-33.8570163,151.2154699,3a,75y,30.32h,99.72t/data=!3m6!1e1!3m4!1sRf8u-gGk7ZqLRal2SDTrBA!2e0!7i13312!8i6656">Joan Sutherland Theatre</a>.<br /><br /><div><a href="https://1.bp.blogspot.com/-tWI8nrlUX7k/Vx9TcFNi5RI/AAAAAAAAE1A/X7Eciia5Big678YDMLNV7LuAdbGFnnKJQCLcB/s1600/Screen%2BShot%2B2016-04-26%2Bat%2B12.39.06%2BPM.png"><img border="0" height="366" src="https://1.bp.blogspot.com/-tWI8nrlUX7k/Vx9TcFNi5RI/AAAAAAAAE1A/X7Eciia5Big678YDMLNV7LuAdbGFnnKJQCLcB/s640/Screen%2BShot%2B2016-04-26%2Bat%2B12.39.06%2BPM.png" width="640"></a></div><br />Or see the <a href="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1460702496274!6m8!1m7!1sZLaXjwzp5R9tO4jNrBo4xw!2m2!1d-33.85741831441582!2d151.2155050559817!3f298.2595150641043!4f-10.035537171478836!5f0.7820865974627469">impressive tapestry</a> designed by the Sydney Opera House&#8217;s architect J&#248;rn Utzon, which hangs in the room  now named after him and overlooking Sydney Harbour. <br /><br /><div><a href="https://1.bp.blogspot.com/-TxJUiCmAdD0/Vx9S9LuWgzI/AAAAAAAAE08/McRaJEpWlbAnPVzOJ9aWPbnqNKOlwOI2wCLcB/s1600/Screen%2BShot%2B2016-04-26%2Bat%2B12.36.48%2BPM.png"><img border="0" height="368" src="https://1.bp.blogspot.com/-TxJUiCmAdD0/Vx9S9LuWgzI/AAAAAAAAE08/McRaJEpWlbAnPVzOJ9aWPbnqNKOlwOI2wCLcB/s640/Screen%2BShot%2B2016-04-26%2Bat%2B12.36.48%2BPM.png" width="640"></a></div><br />Today&#8217;s new Street View collection is part of the opening of the <a href="https://www.google.com/culturalinstitute/u/0/collection/sydney-opera-house">Sydney Opera House on the Google Cultural Institute</a>. To access this imagery, search for Sydney Opera House in Google Maps for mobile (available for both <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&#38;hl=en&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC">Android</a> and <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC">iOS</a>), and select the Street View option to enter your own 360-degree tour. We hope you enjoy exploring this Heritage listed site with Street View.<br /><br /><span>Posted by Cynthia Wei, Street View Program Manager Asia Pacific</span>]]></description>
				<content:encoded><![CDATA[Perched on Bennelong Point in Sydney Harbour, the Sydney Opera House is an Australian icon.  Visited <a href="http://www.sydneyoperahouse.com/about/media_room.aspx">by millions of people</a> each year, this architectural masterpiece can now be explored right from your Android or iPhone in Google Maps with the launch of the <a href="https://www.google.com.au/maps/streetview/#sydney-opera-house">Sydney Opera House on Street View</a>. <br /><br />With this new collection, you can stand on the steps of the Opera House and <a href="https://www.google.com/maps/@-33.8573944,151.2154351,0a,82.2y,309.95h,106.76t/data=!3m4!1e1!3m2!1sZo5n3mVo5CjkghdlowKPow!2e0?source=apiv3">gaze at the white sails</a>, look out at <a href="https://www.google.com/maps/@-33.8572825,151.2146259,3a,75y,334.37h,86.22t/data=!3m6!1e1!3m4!1sxZhD5FT6sDzxnHPhmGuUDg!2e0!7i13312!8i6656">Sydney’s Harbour Bridge</a>, or take in the hustle and bustle of <a href="https://www.google.com/maps/@-33.8577088,151.2149271,3a,75y,260.62h,86.87t/data=!3m6!1e1!3m4!1skah0_LVZnWdwDdNTRS9mPA!2e0!7i13312!8i6656">Circular Quay</a> in 360-degree panoramic imagery from wherever you are.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-9Y-6Hf4PeC0/Vx9UHn6leCI/AAAAAAAAE1Q/rwnAjbAk6OkVHbybAo1H4nxyXgJXd_LrACLcB/s1600/Screen%2BShot%2B2016-04-26%2Bat%2B12.41.52%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://3.bp.blogspot.com/-9Y-6Hf4PeC0/Vx9UHn6leCI/AAAAAAAAE1Q/rwnAjbAk6OkVHbybAo1H4nxyXgJXd_LrACLcB/s640/Screen%2BShot%2B2016-04-26%2Bat%2B12.41.52%2BPM.png" width="640" /></a></div><br />Feel what it’s like to stand on the stage of the <a href="https://www.google.com/maps/@-33.8569646,151.2149478,3a,82.2y,1.71h,90.6t/data=!3m6!1e1!3m4!1sQODPuUB6khTHUYujNCL8Lg!2e0!7i13312!8i6656">Concert Hall</a> and look up at the <a href="https://www.google.com/culturalinstitute/u/0/asset-viewer/acoustic-clouds/kwGvOr4hoPwXLw?exhibitId=gwLiOCWoUk-yLw">acoustic clouds</a>. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-wQyP57of0dQ/Vx9T3nAcTcI/AAAAAAAAE1I/9W7mGdVKiEAwU1TjDvMBNZv0mOkW5VRCQCLcB/s1600/Screen%2BShot%2B2016-04-26%2Bat%2B12.40.41%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://1.bp.blogspot.com/-wQyP57of0dQ/Vx9T3nAcTcI/AAAAAAAAE1I/9W7mGdVKiEAwU1TjDvMBNZv0mOkW5VRCQCLcB/s640/Screen%2BShot%2B2016-04-26%2Bat%2B12.40.41%2BPM.png" width="640" /></a></div><br />And go behind-the-scenes to spaces rarely seen by the public, like the stage of the <a href="https://www.google.com/maps/@-33.8570163,151.2154699,3a,75y,30.32h,99.72t/data=!3m6!1e1!3m4!1sRf8u-gGk7ZqLRal2SDTrBA!2e0!7i13312!8i6656">Joan Sutherland Theatre</a>.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-tWI8nrlUX7k/Vx9TcFNi5RI/AAAAAAAAE1A/X7Eciia5Big678YDMLNV7LuAdbGFnnKJQCLcB/s1600/Screen%2BShot%2B2016-04-26%2Bat%2B12.39.06%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="366" src="https://1.bp.blogspot.com/-tWI8nrlUX7k/Vx9TcFNi5RI/AAAAAAAAE1A/X7Eciia5Big678YDMLNV7LuAdbGFnnKJQCLcB/s640/Screen%2BShot%2B2016-04-26%2Bat%2B12.39.06%2BPM.png" width="640" /></a></div><br />Or see the <a href="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1460702496274!6m8!1m7!1sZLaXjwzp5R9tO4jNrBo4xw!2m2!1d-33.85741831441582!2d151.2155050559817!3f298.2595150641043!4f-10.035537171478836!5f0.7820865974627469">impressive tapestry</a> designed by the Sydney Opera House’s architect Jørn Utzon, which hangs in the room  now named after him and overlooking Sydney Harbour. <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-TxJUiCmAdD0/Vx9S9LuWgzI/AAAAAAAAE08/McRaJEpWlbAnPVzOJ9aWPbnqNKOlwOI2wCLcB/s1600/Screen%2BShot%2B2016-04-26%2Bat%2B12.36.48%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://1.bp.blogspot.com/-TxJUiCmAdD0/Vx9S9LuWgzI/AAAAAAAAE08/McRaJEpWlbAnPVzOJ9aWPbnqNKOlwOI2wCLcB/s640/Screen%2BShot%2B2016-04-26%2Bat%2B12.36.48%2BPM.png" width="640" /></a></div><br />Today’s new Street View collection is part of the opening of the <a href="https://www.google.com/culturalinstitute/u/0/collection/sydney-opera-house">Sydney Opera House on the Google Cultural Institute</a>. To access this imagery, search for Sydney Opera House in Google Maps for mobile (available for both <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&amp;hl=en&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC">Android</a> and <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC">iOS</a>), and select the Street View option to enter your own 360-degree tour. We hope you enjoy exploring this Heritage listed site with Street View.<br /><br /><span class="byline-author">Posted by Cynthia Wei, Street View Program Manager Asia Pacific</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/sydney-opera-house-sets-sail-on-street-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>How technology can help us become more sustainable</title>
		<link>https://googledata.org/google-earth/how-technology-can-help-us-become-more-sustainable-2/</link>
		<comments>https://googledata.org/google-earth/how-technology-can-help-us-become-more-sustainable-2/#comments</comments>
		<pubDate>Thu, 14 Apr 2016 14:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=8ee370f2cd3b3f5b26df7969a1faaaed</guid>
		<description><![CDATA[We want to create technology that helps millions of others <a href="https://maps.googleblog.com/2015/11/street-view-gives-you-window-into.html">understand our changing world</a> and live more sustainably&#8212;whether it&#8217;s connecting people with public transit routes, or using the data that powers Google Earth to help you see if your roof is good for solar panels. In honor of Earth Day this month, we&#8217;ve gathered together some of the ways Google can help you reduce your everyday emissions and learn more about preserving our world. <br /><br /><b>Monitoring forests and wildlife</b><br />Google Earth satellite technology gives scientists and environmentalists a way to measure and visualize changes of the world on both land and water. This technology can have great impact on monitoring endangered animal populations around the world. For example, with the help of <a href="http://www.globalforestwatch.org/">Global Forest Watch</a>, powered by <a href="https://earthengine.google.com/">Google Earth Engine</a>, scientists at the University of Minnesota are suggesting that <a href="http://blog.globalforestwatch.org/2016/04/we-can-save-tigers-from-extinction-with-a-little-help-from-satellites/?utm_campaign=tiger_habitat&#38;utm_source=gif&#38;utm_medium=caption">wild tiger populations may rebound by 2022</a>, due to the efforts to restore tiger habitats in key regions.<br /><br /><div><a href="https://3.bp.blogspot.com/-V3jRTg6OxCM/Vw7YbvX7iYI/AAAAAAAAE0s/m7XXLJg3lSE-aycJGUyPNDgjZ_4eTbQVgCLcB/s1600/Screen%2BShot%2B2016-04-06%2Bat%2B10.26.39%2BAM.png"><img border="0" height="366" src="https://3.bp.blogspot.com/-V3jRTg6OxCM/Vw7YbvX7iYI/AAAAAAAAE0s/m7XXLJg3lSE-aycJGUyPNDgjZ_4eTbQVgCLcB/s640/Screen%2BShot%2B2016-04-06%2Bat%2B10.26.39%2BAM.png" width="640"></a></div><a href="http://www.globalforestwatch.org/map/5/17.89/92.30/ALL/grayscale/loss,forestgain/619?tab=countries-tab&#38;begin=2001-01-01&#38;end=2015-01-01&#38;threshold=30"><i>Anyone can now view tiger conservation areas (in orange and yellow above) using Global Forest Watch</i></a><br /><br /><b>Going solar</b><br />Looking to generate clean energy savings with solar power on your home? Check out <a href="https://www.google.com/get/sunroof">Project Sunroof</a>, a solar calculator that estimates the impact and potential savings of installing solar on the roof of your home. Taking Google Earth imagery and overlaying annual sun exposure and weather patterns, Sunroof is able to assess viable roof space for solar panel installation, estimate the value of solar and savings based on local energy costs, and connect you with providers of solar panels in your area. <br /><br />As of this week, Sunroof expanded to 42 states across the U.S. (from <a href="http://googlegreenblog.blogspot.com/2015/12/should-you-go-solar-just-ask-project.html">10 states in December</a>), which makes imagery and data available for a solar analysis to 43 million rooftops. We&#8217;re also working with organizations like Sierra Club and their <a href="http://www.sierraclub.org/ready-for-100">Ready for 100 campaign</a> to help analyze the solar potential of cities across the US. <br /><span><br /></span> <br /><div dir="ltr"><span><img height="333" src="https://lh3.googleusercontent.com/62SS_3yGjMqTf7E8go9XKgwjrXLPUL426r7BkEnU0zM5qSFpL6yJpMKSjJhjt09s7Y0zVnSCAlh_e7b4DTqRuXIEUoq-fJ4566XWJjURFhRx6JWJ0pjOrXMCUpvRRsy2rAGpCv55" width="624"></span></div><i>Project Sunroof shows you the solar potential of your home and city, allowing you to realize its renewable potential. The image on the right shows how much sunshine Denver, CO residents can capture with solar.</i><br /><b>Measuring air pollutants</b><br />For the past few years, <a href="http://www.google.com/earth/outreach/index.html">Google Earth Outreach</a> and the <a href="https://www.edf.org/climate/methanemaps">Environmental Defense Fund</a> (EDF) have been working together to map methane leaks from natural gas pipelines under our streets. Since methane is a very potent greenhouse gas (GHG), even small leaks can add up to big emissions that can hurt our climate. By attaching methane analyzers to select Street View cars, we&#8217;ve driven more than 7,500 miles and have <a href="https://www.edf.org/climate/methanemaps">mapped 4,200+ leaks in 10 cities</a>. What we found ranges from an average of one leak per mile (in Boston) to one leak every 200 miles (in Indianapolis), demonstrating the effectiveness of techniques like using plastic piping instead of steel for pipeline construction. We hope utilities can use this data to prioritize the replacement of gas mains and service lines (like New Jersey&#8217;s <a href="https://www.pseg.com/info/media/newsreleases/2015/2015-11-16.jsp#.Vw7Y15MrKqD">PSE&#38;G announced</a> last fall). We&#8217;re also partnering with <a href="https://aclima.io/">Aclima</a> to measure <a href="http://googlegreenblog.blogspot.com/2015/09/making-invisible-visible-by-mapping-air.html">many more pollutants</a> with Street View cars in California communities through this year.<br /><br /><div></div><br /><a href="https://www.edf.org/climate/methanemaps"><i>Anyone can explore the maps at www.edf.org/methanemaps</i></a><br /><br />Technology is crucial to increasing energy efficiency, raising climate change awareness, and sustainability efforts. To learn more about what you can do to help, take a moment to explore our&#160;<a href="http://www.google.com/earth/outreach/index.html">Google Earth Outreach</a>&#160;site,&#160;where these tools and more are described in depth.<br /><br />Posted by Rebecca Moore, Engineering Director, Google Earth, Earth Engine &#38; Outreach]]></description>
				<content:encoded><![CDATA[We want to create technology that helps millions of others <a href="https://maps.googleblog.com/2015/11/street-view-gives-you-window-into.html">understand our changing world</a> and live more sustainably—whether it’s connecting people with public transit routes, or using the data that powers Google Earth to help you see if your roof is good for solar panels. In honor of Earth Day this month, we’ve gathered together some of the ways Google can help you reduce your everyday emissions and learn more about preserving our world. <br /><br /><b>Monitoring forests and wildlife</b><br />Google Earth satellite technology gives scientists and environmentalists a way to measure and visualize changes of the world on both land and water. This technology can have great impact on monitoring endangered animal populations around the world. For example, with the help of <a href="http://www.globalforestwatch.org/">Global Forest Watch</a>, powered by <a href="https://earthengine.google.com/">Google Earth Engine</a>, scientists at the University of Minnesota are suggesting that <a href="http://blog.globalforestwatch.org/2016/04/we-can-save-tigers-from-extinction-with-a-little-help-from-satellites/?utm_campaign=tiger_habitat&amp;utm_source=gif&amp;utm_medium=caption">wild tiger populations may rebound by 2022</a>, due to the efforts to restore tiger habitats in key regions.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-V3jRTg6OxCM/Vw7YbvX7iYI/AAAAAAAAE0s/m7XXLJg3lSE-aycJGUyPNDgjZ_4eTbQVgCLcB/s1600/Screen%2BShot%2B2016-04-06%2Bat%2B10.26.39%2BAM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="366" src="https://3.bp.blogspot.com/-V3jRTg6OxCM/Vw7YbvX7iYI/AAAAAAAAE0s/m7XXLJg3lSE-aycJGUyPNDgjZ_4eTbQVgCLcB/s640/Screen%2BShot%2B2016-04-06%2Bat%2B10.26.39%2BAM.png" width="640" /></a></div><a href="http://www.globalforestwatch.org/map/5/17.89/92.30/ALL/grayscale/loss,forestgain/619?tab=countries-tab&amp;begin=2001-01-01&amp;end=2015-01-01&amp;threshold=30"><i>Anyone can now view tiger conservation areas (in orange and yellow above) using Global Forest Watch</i></a><br /><br /><b>Going solar</b><br />Looking to generate clean energy savings with solar power on your home? Check out <a href="https://www.google.com/get/sunroof">Project Sunroof</a>, a solar calculator that estimates the impact and potential savings of installing solar on the roof of your home. Taking Google Earth imagery and overlaying annual sun exposure and weather patterns, Sunroof is able to assess viable roof space for solar panel installation, estimate the value of solar and savings based on local energy costs, and connect you with providers of solar panels in your area. <br /><br />As of this week, Sunroof expanded to 42 states across the U.S. (from <a href="http://googlegreenblog.blogspot.com/2015/12/should-you-go-solar-just-ask-project.html">10 states in December</a>), which makes imagery and data available for a solar analysis to 43 million rooftops. We’re also working with organizations like Sierra Club and their <a href="http://www.sierraclub.org/ready-for-100">Ready for 100 campaign</a> to help analyze the solar potential of cities across the US. <br /><span id="docs-internal-guid-9533f205-11fc-7b7b-dc9f-28fd21df2359"><br /></span> <br /><div dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt; text-align: center;"><span style="background-color: transparent; color: black; font-family: &quot;arial&quot;; font-size: 13.333333333333332px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><img height="333" src="https://lh3.googleusercontent.com/62SS_3yGjMqTf7E8go9XKgwjrXLPUL426r7BkEnU0zM5qSFpL6yJpMKSjJhjt09s7Y0zVnSCAlh_e7b4DTqRuXIEUoq-fJ4566XWJjURFhRx6JWJ0pjOrXMCUpvRRsy2rAGpCv55" style="border: none; transform: rotate(0rad);" width="624" /></span></div><i>Project Sunroof shows you the solar potential of your home and city, allowing you to realize its renewable potential. The image on the right shows how much sunshine Denver, CO residents can capture with solar.</i><br /><b>Measuring air pollutants</b><br />For the past few years, <a href="http://www.google.com/earth/outreach/index.html">Google Earth Outreach</a> and the <a href="https://www.edf.org/climate/methanemaps">Environmental Defense Fund</a> (EDF) have been working together to map methane leaks from natural gas pipelines under our streets. Since methane is a very potent greenhouse gas (GHG), even small leaks can add up to big emissions that can hurt our climate. By attaching methane analyzers to select Street View cars, we’ve driven more than 7,500 miles and have <a href="https://www.edf.org/climate/methanemaps">mapped 4,200+ leaks in 10 cities</a>. What we found ranges from an average of one leak per mile (in Boston) to one leak every 200 miles (in Indianapolis), demonstrating the effectiveness of techniques like using plastic piping instead of steel for pipeline construction. We hope utilities can use this data to prioritize the replacement of gas mains and service lines (like New Jersey’s <a href="https://www.pseg.com/info/media/newsreleases/2015/2015-11-16.jsp#.Vw7Y15MrKqD">PSE&amp;G announced</a> last fall). We’re also partnering with <a href="https://aclima.io/">Aclima</a> to measure <a href="http://googlegreenblog.blogspot.com/2015/09/making-invisible-visible-by-mapping-air.html">many more pollutants</a> with Street View cars in California communities through this year.<br /><br /><div class="separator" style="clear: both; text-align: center;"><iframe allowfullscreen="" class="YOUTUBE-iframe-video" data-thumbnail-src="https://i.ytimg.com/vi/9TrE2x6zURo/0.jpg" frameborder="0" height="365" src="https://www.youtube.com/embed/9TrE2x6zURo?feature=player_embedded" width="650"></iframe></div><br /><a href="https://www.edf.org/climate/methanemaps"><i>Anyone can explore the maps at www.edf.org/methanemaps</i></a><br /><br />Technology is crucial to increasing energy efficiency, raising climate change awareness, and sustainability efforts. To learn more about what you can do to help, take a moment to explore our&nbsp;<a href="http://www.google.com/earth/outreach/index.html">Google Earth Outreach</a>&nbsp;site,&nbsp;where these tools and more are described in depth.<br /><br />Posted by Rebecca Moore, Engineering Director, Google Earth, Earth Engine &amp; Outreach]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/how-technology-can-help-us-become-more-sustainable-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Advanced marker animations and more with Google Maps SDK for iOS 1.13</title>
		<link>https://googledata.org/google-maps/advanced-marker-animations-and-more-with-google-maps-sdk-for-ios-1-13/</link>
		<comments>https://googledata.org/google-maps/advanced-marker-animations-and-more-with-google-maps-sdk-for-ios-1-13/#comments</comments>
		<pubDate>Mon, 04 Apr 2016 17:01:00 +0000</pubDate>
		<dc:creator><![CDATA[Maps Devel]]></dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google geo]]></category>
		<category><![CDATA[google geodevelopers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=7afc41f48555707424bfbcaaec0c0158</guid>
		<description><![CDATA[Last week we launched the Google Maps SDK for iOS 1.13. This release includes the ability to create advanced marker animations, the option of auto refreshing info windows, the ability to set the frame rate up to 60 frames per second, further custom styling for the Place Autocomplete widget, and a new <span>mapViewSnapshotReady</span> event. <br /><br /><h4>
Advanced marker animations and auto-refreshing of info windows</h4>
Ever wanted to have rotating markers or use a grow and glow marker animation? <br /><br />
With the Google Maps SDK for iOS 1.13, we have introduced an <span><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_marker#property-documentation?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">iconView</a></span> property for marker icons, giving you the animation capabilities of a UIView. Because <span><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_marker#property-documentation?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">iconView</a></span> accepts a UIView, you can have a hierarchy of standard UI controls defining your markers, each view having the standard set of animation capabilities. The <span><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_marker#property-documentation?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">iconView</a></span> property supports animation of all animatable properties of UIView except <span>frame</span> and <span>center</span>. Take a look at our <a href="https://developers.google.com/maps/documentation/ios-sdk/marker#use_the_markers_iconview_property?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">documentation</a> to get started.<br /><br />
We've also included the option to auto-refresh info windows, which is particularly useful if you want to use a static web page as info window content but it hasn&#8217;t downloaded by the time you create your info window. By using the new marker property <a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_marker#property-documentation?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost"><span>tracksInfoWindowChanges</span></a>, you can have the <a href="https://developers.google.com/maps/documentation/ios-sdk/marker#set_an_info_window_to_refresh_automatically?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">info window automatically refresh</a> when the static web page loads. <br /><br /><h4>
Frame rate up to 60 fps with graceful fallback</h4>
You can now take advantage of a new enum, <span>GMSFrameRate</span>, which has three options: <span>kGMSFrameRatePowerSave</span> (15fps), <span>kGMSFrameRateConservative</span> (30fps), and the default <span>kGMSFrameRateMaximum</span> (60fps with 30fps fallback). In order to protect devices that don't handle 60fps well, we do a run-time device model check and the <a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_map_view#property-documentation?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost"><span>preferredFrameRate</span></a> is silently downgraded to 30fps when necessary on older devices. <br /><br /><h4>
Autocomplete widget styling</h4>
In Google Maps SDK for iOS 1.12 we announced the <a href="http://googlegeodevelopers.blogspot.com/2015/12/autocomplete-widget-and-updated-place.html">iOS Places autocomplete widget</a>. With the release of iOS 1.13, you can now add further custom styling to your autocomplete widget to create a consistent visual identity.<br /><div>
<span><img height="320" src="https://lh5.googleusercontent.com/GmkpmXrYh033uUXSjTZ_hcGjCAZTM4ES9TOoT3RLK4xadHyKCBOxkJY_z1M67mEwBPqar0fgzlN8b0u4FMfZRt4Sg_BzSdPj87fVStyf0t1963LGpaXywqJ2TwRCSXG-sjlrF_Pi" width="180"><img height="320" src="https://lh4.googleusercontent.com/0wgh8TJ7OCv714S9mPtu6vAO_XAgDBfgE_M5hStXBEJtx10UhRAI_KokMXKgyfdXD7SU8Pf_jJAmPKHvFcBV3372oJc2s4yKNFU6TF4_snrR8b_eSInVsy4KODR1JX_60CCrOx9Y" width="180"><img height="320" src="https://lh4.googleusercontent.com/RcscvQVqzcR0L-ncm89tFcUZ-sxjGfY5uqQJi3Kn5decsy3spnpqJ_iKb6pLxedXt4o3-XJJofCKlxkLyxsXgeO0ba9x7jJnyQ_lZjn0Lw5VIVLAVgn8A7SkoJmS8cXsKCmlIE4B" width="180"></span></div>
<span></span><br />
To set widget UI element colors:<br /><br /><ol><li>Use the native iOS <a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAppearance_Protocol/#//apple_ref/occ/intfcm/UIAppearance/appearance">Appearance Proxy</a> system when possible to globally style UI controls. The Places autocomplete widget will honor these settings.</li>
<li>Use the new SDK methods on widget classes to set colors which the Appearance Proxy system doesn't support.</li>
</ol><br />
Our <a href="https://developers.google.com/places/ios-api/autocomplete#customize_text_and_background_colors?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">documentation</a> highlights which elements can be customized using the Appearance Proxy, and which can be customized by using the SDK methods.<br /><h4>
<br />
mapViewSnapshotReady event</h4>
We heard your requests to provide a clear signal that all tiles have been rendered and the map has finished loading. In <a href="http://googlegeodevelopers.blogspot.com.au/2015/11/the-new-google-maps-sdk-for-ios.html">Google Maps SDK for iOS 1.11</a> we included start/finish events for map tile and Street View panorama rendering. <br /><br />
In this release, we've added a <span><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/protocol_g_m_s_map_view_delegate-p#member-function-documentation?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">mapViewSnapshotReady</a></span> event that indicates that the map is stable (tiles loaded, labels rendered, camera idle) and overlay objects have been rendered. This is useful if you want to do a transition away from the map, but need a static image of the map in case you want to transition back. The <span><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/protocol_g_m_s_map_view_delegate-p#member-function-documentation?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">mapViewSnapshotReady</a></span> event will ensure that the static image will truly represent the state of the map.<br /><br />
A big thank you to iOS developers for using the Google Maps SDK and submitting feedback via the <a href="https://code.google.com/p/gmaps-api-issues/?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">issue tracker</a>! <br /><br />
Take a look at our <a href="https://developers.google.com/maps/documentation/ios-sdk/releases?hl=en?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">release notes</a> and update to <a href="https://developers.google.com/maps/documentation/ios-sdk/start?utm_source=geodevsite&#38;utm_medium=website&#38;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">Google Maps SDK for iOS 1.13</a> today.<br /><i><br /></i> <i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i><br /><span><span><img height="89" src="https://lh3.googleusercontent.com/jtHHfhZBUMZNUp22QRmsOJxWQ2Vb3bOHmlq0tO9yk8bxgrbZR3G1jSxBIjTNp-6zIPYq03hOPGzJxk-ySJpjPE5C5nQ6xoBXhoj--1-zSy1DVtxW-UnWZIp4i6H3IcMU18hLdBZh" width="89"></span></span>]]></description>
				<content:encoded><![CDATA[Last week we launched the Google Maps SDK for iOS 1.13. This release includes the ability to create advanced marker animations, the option of auto refreshing info windows, the ability to set the frame rate up to 60 frames per second, further custom styling for the Place Autocomplete widget, and a new <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">mapViewSnapshotReady</span> event. <br />
<br />
<h4>
Advanced marker animations and auto-refreshing of info windows</h4>
Ever wanted to have rotating markers or use a grow and glow marker animation? <br />
<br />
With the Google Maps SDK for iOS 1.13, we have introduced an <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_marker#property-documentation?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">iconView</a></span> property for marker icons, giving you the animation capabilities of a UIView. Because <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_marker#property-documentation?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">iconView</a></span> accepts a UIView, you can have a hierarchy of standard UI controls defining your markers, each view having the standard set of animation capabilities. The <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_marker#property-documentation?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">iconView</a></span> property supports animation of all animatable properties of UIView except <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">frame</span> and <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">center</span>. Take a look at our <a href="https://developers.google.com/maps/documentation/ios-sdk/marker#use_the_markers_iconview_property?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">documentation</a> to get started.<br />
<br />
We've also included the option to auto-refresh info windows, which is particularly useful if you want to use a static web page as info window content but it hasn’t downloaded by the time you create your info window. By using the new marker property <a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_marker#property-documentation?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost"><span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">tracksInfoWindowChanges</span></a>, you can have the <a href="https://developers.google.com/maps/documentation/ios-sdk/marker#set_an_info_window_to_refresh_automatically?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">info window automatically refresh</a> when the static web page loads. <br />
<br />
<h4>
Frame rate up to 60 fps with graceful fallback</h4>
You can now take advantage of a new enum, <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">GMSFrameRate</span>, which has three options: <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">kGMSFrameRatePowerSave</span> (15fps), <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">kGMSFrameRateConservative</span> (30fps), and the default <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">kGMSFrameRateMaximum</span> (60fps with 30fps fallback). In order to protect devices that don't handle 60fps well, we do a run-time device model check and the <a href="https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_map_view#property-documentation?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost"><span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">preferredFrameRate</span></a> is silently downgraded to 30fps when necessary on older devices. <br />
<br />
<h4>
Autocomplete widget styling</h4>
In Google Maps SDK for iOS 1.12 we announced the <a href="http://googlegeodevelopers.blogspot.com/2015/12/autocomplete-widget-and-updated-place.html">iOS Places autocomplete widget</a>. With the release of iOS 1.13, you can now add further custom styling to your autocomplete widget to create a consistent visual identity.<br />
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: &quot;arial&quot;; font-size: 14.6667px; margin-left: 1em; margin-right: 1em; vertical-align: baseline; white-space: pre-wrap;"><img height="320" src="https://lh5.googleusercontent.com/GmkpmXrYh033uUXSjTZ_hcGjCAZTM4ES9TOoT3RLK4xadHyKCBOxkJY_z1M67mEwBPqar0fgzlN8b0u4FMfZRt4Sg_BzSdPj87fVStyf0t1963LGpaXywqJ2TwRCSXG-sjlrF_Pi" style="border: none; transform: rotate(0rad);" width="180" /> <img height="320" src="https://lh4.googleusercontent.com/0wgh8TJ7OCv714S9mPtu6vAO_XAgDBfgE_M5hStXBEJtx10UhRAI_KokMXKgyfdXD7SU8Pf_jJAmPKHvFcBV3372oJc2s4yKNFU6TF4_snrR8b_eSInVsy4KODR1JX_60CCrOx9Y" style="border: none; font-size: 14.6667px; transform: rotate(0rad);" width="180" /> <img height="320" src="https://lh4.googleusercontent.com/RcscvQVqzcR0L-ncm89tFcUZ-sxjGfY5uqQJi3Kn5decsy3spnpqJ_iKb6pLxedXt4o3-XJJofCKlxkLyxsXgeO0ba9x7jJnyQ_lZjn0Lw5VIVLAVgn8A7SkoJmS8cXsKCmlIE4B" style="border: none; font-size: 14.6667px; transform: rotate(0rad);" width="180" /></span></div>
<span id="docs-internal-guid-a801bf69-ce28-c857-718f-54853ea0c956"></span><br />
To set widget UI element colors:<br />
<br />
<ol>
<li>Use the native iOS <a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAppearance_Protocol/#//apple_ref/occ/intfcm/UIAppearance/appearance">Appearance Proxy</a> system when possible to globally style UI controls. The Places autocomplete widget will honor these settings.</li>
<li>Use the new SDK methods on widget classes to set colors which the Appearance Proxy system doesn't support.</li>
</ol>
<br />
Our <a href="https://developers.google.com/places/ios-api/autocomplete#customize_text_and_background_colors?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">documentation</a> highlights which elements can be customized using the Appearance Proxy, and which can be customized by using the SDK methods.<br />
<h4>
<br />
mapViewSnapshotReady event</h4>
We heard your requests to provide a clear signal that all tiles have been rendered and the map has finished loading. In <a href="http://googlegeodevelopers.blogspot.com.au/2015/11/the-new-google-maps-sdk-for-ios.html">Google Maps SDK for iOS 1.11</a> we included start/finish events for map tile and Street View panorama rendering. <br />
<br />
In this release, we've added a <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/protocol_g_m_s_map_view_delegate-p#member-function-documentation?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">mapViewSnapshotReady</a></span> event that indicates that the map is stable (tiles loaded, labels rendered, camera idle) and overlay objects have been rendered. This is useful if you want to do a transition away from the map, but need a static image of the map in case you want to transition back. The <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><a href="https://developers.google.com/maps/documentation/ios-sdk/reference/protocol_g_m_s_map_view_delegate-p#member-function-documentation?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">mapViewSnapshotReady</a></span> event will ensure that the static image will truly represent the state of the map.<br />
<br />
A big thank you to iOS developers for using the Google Maps SDK and submitting feedback via the <a href="https://code.google.com/p/gmaps-api-issues/?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">issue tracker</a>! <br />
<br />
Take a look at our <a href="https://developers.google.com/maps/documentation/ios-sdk/releases?hl=en?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">release notes</a> and update to <a href="https://developers.google.com/maps/documentation/ios-sdk/start?utm_source=geodevsite&amp;utm_medium=website&amp;utm_campaign=2016-geo-na-website-gmedia-blogs-us-blogPost">Google Maps SDK for iOS 1.13</a> today.<br />
<i><br />
</i> <i>Posted by Megan Boundey, Product Manager, Google Maps Mobile APIs</i><br />
<span id="docs-internal-guid-a801bf69-ce2a-a886-2857-0ee9a3ee901c"><span style="color: #444444; font-family: &quot;arial&quot;; font-size: 13.3333px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;"><img height="89" src="https://lh3.googleusercontent.com/jtHHfhZBUMZNUp22QRmsOJxWQ2Vb3bOHmlq0tO9yk8bxgrbZR3G1jSxBIjTNp-6zIPYq03hOPGzJxk-ySJpjPE5C5nQ6xoBXhoj--1-zSy1DVtxW-UnWZIp4i6H3IcMU18hLdBZh" style="-webkit-transform: rotate(0.00rad); border: none; transform: rotate(0.00rad);" width="89" /></span></span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-maps/advanced-marker-animations-and-more-with-google-maps-sdk-for-ios-1-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Explore the wonders of Thailand with Street View</title>
		<link>https://googledata.org/google-earth/explore-the-wonders-of-thailand-with-street-view/</link>
		<comments>https://googledata.org/google-earth/explore-the-wonders-of-thailand-with-street-view/#comments</comments>
		<pubDate>Tue, 29 Mar 2016 01:03:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=4b8ce8edb1b9032f9b9fbdc05baeb30d</guid>
		<description><![CDATA[<div dir="ltr"><div dir="ltr">Nestled in northern Thailand, <a href="https://www.google.com/maps/@17.026899,99.693284,3a,90y,255.12h,102.02t/data=!3m5!1e1!3m3!1smVEcxdEaccPQc8_TphHDfQ!2e0!3e5">Sukhothai Historical Park</a> was once the capital of ancient Siam. Sukhothai means &#8220;dawn of happiness&#8221;, and now you too can explore this happy place from the palm of your hand with Google Maps. Today, the park joins over 150 new  places and national treasures that are now available in 360-degree panoramic imagery on Google Street View.<br /><br />From ancient temples, to tropical beaches, to strawberry plantations and rice terraces, this new Street View collection showcases the beauty and diversity of The Kingdom. Our intrepid trekker walked 500 kilometers with a heavy backpack across the length and breadth of the country to capture images of places like this:<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://3.bp.blogspot.com/-FY81KGTCofE/Vviiq4zmB6I/AAAAAAAAB4w/nA8_BsumzdIOoaZuoGhYDgSLCPG4mhKPQ/s1600/temple.jpg"><img border="0" height="476" src="https://3.bp.blogspot.com/-FY81KGTCofE/Vviiq4zmB6I/AAAAAAAAB4w/nA8_BsumzdIOoaZuoGhYDgSLCPG4mhKPQ/s640/temple.jpg" width="640"></a></td></tr><tr><td>Trekking around the Chai Watthanaram Temple at Ayutthaya Historical Park in Central Thailand </td></tr></tbody></table>Temple visits are a must for any visitor to Thailand.<br />Now you can wander virtually through the ruins of the <a href="https://www.google.com/maps/@14.343182,100.542476,3a,75y,247.45h,92.26t/data=!3m5!1e1!3m3!1s9smApdY-Zr-W0QkFh-U2Hg!2e0!3e5" target="_blank">Chai Watthanaram Temple</a> and pay your virtual respects to Buddha <a href="https://www.google.com/maps/@14.3567083,100.5682795,3a,30y,185.07h,83.43t/data=!3m6!1e1!3m4!1sx6PJ3tUrN7npgT9kLnpd_Q!2e0!7i13312!8i6656" target="_blank">peaking out</a> from behind ancient tree roots at the Ayutthaya Historical Park. See ancient Khmer ruins at <a href="https://www.google.com/maps/@14.5318692,102.9404693,3a,75y,297.88h,114.31t/data=!3m6!1e1!3m4!1sCXNzI1NcddwhVBQI1gwBMg!2e0!7i13312!8i6656" target="_blank">Phanom Rung National Park</a>, or get up close to the intricate Buddhist and Hindu sculptures at the <a href="https://www.google.com/maps/@12.9727953,100.8894468,3a,75y,262.32h,112.48t/data=!3m6!1e1!3m4!1suYNnjg9JOElhoFIOIQIgEA!2e0!7i13312!8i6656" target="_blank">The Sanctuary of Truth</a> &#8212; a temple made entirely of wood, just outside Bangkok.<br /><div><br /></div><div>You can also explore the Chinese architecture of the Viharn Sien Chinese Cultural and Religion Museum. </div><div><br /></div><div><br /></div>Or take a whirlwind tour around Thailand&#8217;s most famous monuments and architectural attractions all in one place at <a href="https://www.google.com/maps/@13.5457121,100.6286216,3a,90y,4.04h,103.02t/data=!3m6!1e1!3m4!1sA57vQxJ-AjcIJ_p1VIRLGg!2e0!7i13312!8i6656" target="_blank">Ancient Siam</a>. Dubbed the world's largest outdoor museum, <a href="http://www.ancientcitygroup.net/ancientsiam/en/map" target="_blank">the park is shaped like Thailand </a>and is home to monuments of <a href="https://www.google.com/maps/@13.5436892,100.6260832,3a,75y,220.88h,85.19t/data=!3m6!1e1!3m4!1sHLNjpPUYyzHsYE5pI6Pe2A!2e0!7i13312!8i6656" target="_blank">The Old Market Town</a> and <a href="https://www.google.com/maps/@13.5489761,100.6261009,3a,75y,268.39h,86.63t/data=!3m6!1e1!3m4!1sWhkbWBtqchUpHhnfyRnUMg!2e0!7i13312!8i6656" target="_blank">The Pavilion of the Enlightened</a>. <br /><br />For good fortune, why not head over to the Erawan Museum just outside the capital? There you&#8217;ll find a giant Erawan statue, a mythological three-headed elephant, filled with antiquities and artifacts.<br /><br /><br />Our trekker also found some real elephants on his travels, too. As well as bringing<a href="https://www.google.com/maps/streetview/#thailand-highlights/elephant-world" target="_blank"> the 'retirement home' for elephants to Street View,</a> we also had a chance to say hi to this big feller while capturing the <a href="https://photos.google.com/share/AF1QipObow9ik3EaVZgBMtL6HHnK8rsXjr_QCzFeD2tDeHfpJSbAGjkeMseSgLYZe92LPQ/photo/AF1QipNFlrMGTWVTETPbmGYMowL63NlB4E0x_GxHPr-Z?key=LTh1YWtVYkhIYWNldjVBUi1CVUxkcUI0OVI3OVRB" target="_blank">Thai Thani Art &#38; Culture Village</a>&#160;in Eastern Thailand.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://3.bp.blogspot.com/-h8qkPrbxJcs/Vvi4-zKFK3I/AAAAAAAAB5A/_uAXKgDb96oVIpLnKGYMFvdPKgYcKEeGw/s1600/elephant.jpg"><img border="0" height="360" src="https://3.bp.blogspot.com/-h8qkPrbxJcs/Vvi4-zKFK3I/AAAAAAAAB5A/_uAXKgDb96oVIpLnKGYMFvdPKgYcKEeGw/s640/elephant.jpg" width="640"></a></td></tr><tr><td>Trekker says hi to the elephants at the Thai Thani Art &#38; Culture Village</td></tr></tbody></table>For something a little cooler, head north to Chiang Mai where you can see mist rolling over the <a href="https://www.google.com/maps/@19.9216713,99.0405333,3a,90y,146.29h,86.73t/data=!3m6!1e1!3m4!1sJwNH17CkwQ_GXgTZAlI5mQ!2e0!7i13312!8i6656" target="_blank">2000 Tea Plantation</a> and the Ban Nor Lae Village <a href="https://www.google.com/maps/@19.9292157,99.034275,3a,75y,173.27h,75.43t/data=!3m5!1e1!3m3!1st4iDDe4CTZyCfgis1D49Qw!7i13312!8i6656" target="_blank">Strawberry Fields.</a><br /><div><br /></div><div><br /></div>Those strawberry fields really do feel like forever when you&#8217;re carrying the trekker:<br /><div><a href="https://3.bp.blogspot.com/--N6qX5ZXGEA/Vvi6djmlEFI/AAAAAAAAB5M/ELPe--MhbJI0iDYvIUBP8jqWDY-bHTFrw/s1600/strawberries.JPG"><img border="0" height="480" src="https://3.bp.blogspot.com/--N6qX5ZXGEA/Vvi6djmlEFI/AAAAAAAAB5M/ELPe--MhbJI0iDYvIUBP8jqWDY-bHTFrw/s640/strawberries.JPG" width="640"></a></div><br />No trip to Thailand is complete without a tour of The Kingdom&#8217;s stunning southern beaches. You can laze around Koh Samui&#8217;s <a href="https://www.google.com/maps/@9.5736888,100.0808805,3a,75y,133.25h,82.76t/data=!3m6!1e1!3m4!1sgnJHtreBuasZe8cQ1KSA_w!2e0!7i13312!8i6656" target="_blank">white stretches of sand</a>, take in the lagoons, cliffs and islets of  <a href="https://www.google.com/maps/@9.4524583,100.0397257,3a,75y,192.88h,68.03t/data=!3m6!1e1!3m4!1sUwtus8BOecmJBhe4RA-FhQ!2e0!7i13312!8i6656" target="_blank">Hin Ta Hin Yai</a> and <a href="https://www.google.com/maps/@10.1171534,99.8146543,3a,75y,215.47h,91.68t/data=!3m6!1e1!3m4!1s5Y70sa2G5IwHrcfJ9-9x4A!2e0!7i13312!8i6656" target="_blank">Koh Nang Yuan</a>, or find <a href="https://www.google.com/maps/@10.3175629,99.299993,3a,75y,261.32h,85.12t/data=!3m6!1e1!3m4!1s6Nv5lNKXvWTU7G_dNb-V4g!2e0!7i13312!8i6656" target="_blank">a quiet grotto</a> to watch the boats go by. There&#8217;s no shortage of inspiration for your next diving or beach get away. <br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://4.bp.blogspot.com/-AIivCscOZ0c/Vvi7AeOLzII/AAAAAAAAB5Q/jeBPRFGeepMHf5X0oxCDW-FiPNbOwb8hA/s1600/trekkeron%2Bthe%2Bcliff.jpg"><img border="0" height="360" src="https://4.bp.blogspot.com/-AIivCscOZ0c/Vvi7AeOLzII/AAAAAAAAB5Q/jeBPRFGeepMHf5X0oxCDW-FiPNbOwb8hA/s640/trekkeron%2Bthe%2Bcliff.jpg" width="640"></a></td></tr><tr><td>Taking in the views at Koh Nang Yuan</td></tr></tbody></table><br />Whether you continue your journey in <a href="http://www.google.com/maps/streetview/#thailand-highlights" target="_blank">Google Maps</a> or are inspired to visit in person, we invite you to enjoy exploring the wonders of Thailand. We hope that visiting The Kingdom with Google Maps (available on <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC" target="_blank">iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&#38;hl=en&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC" target="_blank">Android</a>) will inspire a deeper appreciation for the beauty and history of this beautiful country.  <span><br /><br />Posted by Cynthia Wei, Program Manager, Google Street View</span></div></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on"><div dir="ltr" style="text-align: left;" trbidi="on">Nestled in northern Thailand, <a href="https://www.google.com/maps/@17.026899,99.693284,3a,90y,255.12h,102.02t/data=!3m5!1e1!3m3!1smVEcxdEaccPQc8_TphHDfQ!2e0!3e5">Sukhothai Historical Park</a> was once the capital of ancient Siam. Sukhothai means “dawn of happiness”, and now you too can explore this happy place from the palm of your hand with Google Maps. Today, the park joins over 150 new  places and national treasures that are now available in 360-degree panoramic imagery on Google Street View.<br /><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2s!4v1459092210253!6m8!1m7!1smVEcxdEaccPQc8_TphHDfQ!2m2!1d17.0268992772342!2d99.69328379670594!3f263.7698757405668!4f12.019999999999996!5f0.4000000000000002" style="border: 0;" width="600"></iframe><br />From ancient temples, to tropical beaches, to strawberry plantations and rice terraces, this new Street View collection showcases the beauty and diversity of The Kingdom. Our intrepid trekker walked 500 kilometers with a heavy backpack across the length and breadth of the country to capture images of places like this:<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="https://3.bp.blogspot.com/-FY81KGTCofE/Vviiq4zmB6I/AAAAAAAAB4w/nA8_BsumzdIOoaZuoGhYDgSLCPG4mhKPQ/s1600/temple.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="476" src="https://3.bp.blogspot.com/-FY81KGTCofE/Vviiq4zmB6I/AAAAAAAAB4w/nA8_BsumzdIOoaZuoGhYDgSLCPG4mhKPQ/s640/temple.jpg" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Trekking around the Chai Watthanaram Temple at Ayutthaya Historical Park in Central Thailand </td></tr></tbody></table>Temple visits are a must for any visitor to Thailand.<br />Now you can wander virtually through the ruins of the <a href="https://www.google.com/maps/@14.343182,100.542476,3a,75y,247.45h,92.26t/data=!3m5!1e1!3m3!1s9smApdY-Zr-W0QkFh-U2Hg!2e0!3e5" >Chai Watthanaram Temple</a> and pay your virtual respects to Buddha <a href="https://www.google.com/maps/@14.3567083,100.5682795,3a,30y,185.07h,83.43t/data=!3m6!1e1!3m4!1sx6PJ3tUrN7npgT9kLnpd_Q!2e0!7i13312!8i6656" >peaking out</a> from behind ancient tree roots at the Ayutthaya Historical Park. See ancient Khmer ruins at <a href="https://www.google.com/maps/@14.5318692,102.9404693,3a,75y,297.88h,114.31t/data=!3m6!1e1!3m4!1sCXNzI1NcddwhVBQI1gwBMg!2e0!7i13312!8i6656" >Phanom Rung National Park</a>, or get up close to the intricate Buddhist and Hindu sculptures at the <a href="https://www.google.com/maps/@12.9727953,100.8894468,3a,75y,262.32h,112.48t/data=!3m6!1e1!3m4!1suYNnjg9JOElhoFIOIQIgEA!2e0!7i13312!8i6656" >The Sanctuary of Truth</a> — a temple made entirely of wood, just outside Bangkok.<br /><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1459136146312!6m8!1m7!1suYNnjg9JOElhoFIOIQIgEA!2m2!1d12.97279531401444!2d100.8894468250205!3f262.32!4f22.480000000000004!5f0.7820865974627469" style="border: 0;" width="600"></iframe><br /></div><div style="text-align: left;">You can also explore the Chinese architecture of the Viharn Sien Chinese Cultural and Religion Museum. </div><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1459136430888!6m8!1m7!1sLiACAPBrfyVm1oPEuUl2lw!2m2!1d12.78800289392682!2d100.9551285531971!3f109.41479367703914!4f-3.828039898158778!5f0.7820865974627469" style="border: 0;" width="600"></iframe><br /></div><div style="text-align: center;"><br /></div>Or take a whirlwind tour around Thailand’s most famous monuments and architectural attractions all in one place at <a href="https://www.google.com/maps/@13.5457121,100.6286216,3a,90y,4.04h,103.02t/data=!3m6!1e1!3m4!1sA57vQxJ-AjcIJ_p1VIRLGg!2e0!7i13312!8i6656" >Ancient Siam</a>. Dubbed the world's largest outdoor museum, <a href="http://www.ancientcitygroup.net/ancientsiam/en/map" >the park is shaped like Thailand </a>and is home to monuments of <a href="https://www.google.com/maps/@13.5436892,100.6260832,3a,75y,220.88h,85.19t/data=!3m6!1e1!3m4!1sHLNjpPUYyzHsYE5pI6Pe2A!2e0!7i13312!8i6656" >The Old Market Town</a> and <a href="https://www.google.com/maps/@13.5489761,100.6261009,3a,75y,268.39h,86.63t/data=!3m6!1e1!3m4!1sWhkbWBtqchUpHhnfyRnUMg!2e0!7i13312!8i6656" >The Pavilion of the Enlightened</a>. <br /><br />For good fortune, why not head over to the Erawan Museum just outside the capital? There you’ll find a giant Erawan statue, a mythological three-headed elephant, filled with antiquities and artifacts.<br /><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1459137315738!6m8!1m7!1sr2cj6ZDJdpoV7ZDGSEUz9w!2m2!1d13.62875961209481!2d100.5889081425286!3f158.46181963891124!4f32.00869477117308!5f0.7820865974627469" style="border: 0;" width="600"></iframe><br /><br />Our trekker also found some real elephants on his travels, too. As well as bringing<a href="https://www.google.com/maps/streetview/#thailand-highlights/elephant-world" > the 'retirement home' for elephants to Street View,</a> we also had a chance to say hi to this big feller while capturing the <a href="https://photos.google.com/share/AF1QipObow9ik3EaVZgBMtL6HHnK8rsXjr_QCzFeD2tDeHfpJSbAGjkeMseSgLYZe92LPQ/photo/AF1QipNFlrMGTWVTETPbmGYMowL63NlB4E0x_GxHPr-Z?key=LTh1YWtVYkhIYWNldjVBUi1CVUxkcUI0OVI3OVRB" >Thai Thani Art &amp; Culture Village</a>&nbsp;in Eastern Thailand.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="https://3.bp.blogspot.com/-h8qkPrbxJcs/Vvi4-zKFK3I/AAAAAAAAB5A/_uAXKgDb96oVIpLnKGYMFvdPKgYcKEeGw/s1600/elephant.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="360" src="https://3.bp.blogspot.com/-h8qkPrbxJcs/Vvi4-zKFK3I/AAAAAAAAB5A/_uAXKgDb96oVIpLnKGYMFvdPKgYcKEeGw/s640/elephant.jpg" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Trekker says hi to the elephants at the Thai Thani Art &amp; Culture Village</td></tr></tbody></table>For something a little cooler, head north to Chiang Mai where you can see mist rolling over the <a href="https://www.google.com/maps/@19.9216713,99.0405333,3a,90y,146.29h,86.73t/data=!3m6!1e1!3m4!1sJwNH17CkwQ_GXgTZAlI5mQ!2e0!7i13312!8i6656" >2000 Tea Plantation</a> and the Ban Nor Lae Village <a href="https://www.google.com/maps/@19.9292157,99.034275,3a,75y,173.27h,75.43t/data=!3m5!1e1!3m3!1st4iDDe4CTZyCfgis1D49Qw!7i13312!8i6656" >Strawberry Fields.</a><br /><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1459141110723!6m8!1m7!1sJwNH17CkwQ_GXgTZAlI5mQ!2m2!1d19.92167134093536!2d99.04053327276495!3f146.29!4f-3.269999999999996!5f0.4000000000000002" style="border: 0;" width="600"></iframe><br /></div><div style="text-align: center;"><br /></div>Those strawberry fields really do feel like forever when you’re carrying the trekker:<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/--N6qX5ZXGEA/Vvi6djmlEFI/AAAAAAAAB5M/ELPe--MhbJI0iDYvIUBP8jqWDY-bHTFrw/s1600/strawberries.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="480" src="https://3.bp.blogspot.com/--N6qX5ZXGEA/Vvi6djmlEFI/AAAAAAAAB5M/ELPe--MhbJI0iDYvIUBP8jqWDY-bHTFrw/s640/strawberries.JPG" width="640" /></a></div><br />No trip to Thailand is complete without a tour of The Kingdom’s stunning southern beaches. You can laze around Koh Samui’s <a href="https://www.google.com/maps/@9.5736888,100.0808805,3a,75y,133.25h,82.76t/data=!3m6!1e1!3m4!1sgnJHtreBuasZe8cQ1KSA_w!2e0!7i13312!8i6656" >white stretches of sand</a>, take in the lagoons, cliffs and islets of  <a href="https://www.google.com/maps/@9.4524583,100.0397257,3a,75y,192.88h,68.03t/data=!3m6!1e1!3m4!1sUwtus8BOecmJBhe4RA-FhQ!2e0!7i13312!8i6656" >Hin Ta Hin Yai</a> and <a href="https://www.google.com/maps/@10.1171534,99.8146543,3a,75y,215.47h,91.68t/data=!3m6!1e1!3m4!1s5Y70sa2G5IwHrcfJ9-9x4A!2e0!7i13312!8i6656" >Koh Nang Yuan</a>, or find <a href="https://www.google.com/maps/@10.3175629,99.299993,3a,75y,261.32h,85.12t/data=!3m6!1e1!3m4!1s6Nv5lNKXvWTU7G_dNb-V4g!2e0!7i13312!8i6656" >a quiet grotto</a> to watch the boats go by. There’s no shortage of inspiration for your next diving or beach get away. <br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="https://4.bp.blogspot.com/-AIivCscOZ0c/Vvi7AeOLzII/AAAAAAAAB5Q/jeBPRFGeepMHf5X0oxCDW-FiPNbOwb8hA/s1600/trekkeron%2Bthe%2Bcliff.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="360" src="https://4.bp.blogspot.com/-AIivCscOZ0c/Vvi7AeOLzII/AAAAAAAAB5Q/jeBPRFGeepMHf5X0oxCDW-FiPNbOwb8hA/s640/trekkeron%2Bthe%2Bcliff.jpg" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Taking in the views at Koh Nang Yuan</td></tr></tbody></table><br />Whether you continue your journey in <a href="http://www.google.com/maps/streetview/#thailand-highlights" >Google Maps</a> or are inspired to visit in person, we invite you to enjoy exploring the wonders of Thailand. We hope that visiting The Kingdom with Google Maps (available on <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC" >iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&amp;hl=en&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC" >Android</a>) will inspire a deeper appreciation for the beauty and history of this beautiful country.  <span class="byline-author"><br /><br />Posted by Cynthia Wei, Program Manager, Google Street View</span></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/explore-the-wonders-of-thailand-with-street-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Ayubowan Sri Lanka!</title>
		<link>https://googledata.org/google-earth/ayubowan-sri-lanka/</link>
		<comments>https://googledata.org/google-earth/ayubowan-sri-lanka/#comments</comments>
		<pubDate>Tue, 22 Mar 2016 03:37:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=38bb27a7adf0513c48b53a0083afa9a8</guid>
		<description><![CDATA[<div dir="ltr"><div dir="ltr"><br /></div>When the explorer <a href="https://en.wikipedia.org/wiki/Marco_Polo" target="_blank">Marco Polo</a> visited Sri Lanka in 1265, he described it as &#8220;<a href="http://www.srilankaembassyrome.org/travel-and-tourism.html#_ftn1" target="_blank">the finest island of its size in all the world</a>.&#8221; Tourists from around the world agree, as it&#8217;s become an increasingly popular travel destination, especially for those who want to explore the country&#8217;s <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/ruwanwelisaya" target="_blank">rich history</a> and <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/point-pedro-beach" target="_blank">natural beauty</a>. Now even more people around the world will be able to discover some of the jewels that this fine island has to offer &#8212; minus the treacherous sea voyage &#8212; with Street View. <br /><br />From the hustle and bustle of <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/nelum-pokuna" target="_blank">downtown Colombo</a>, to the <a href="http://www.google.com/maps/@6.7840385,80.9663442,3a,75y,213.94h,87.85t/data=!3m6!1e1!3m4!1sZes3JwsCfdJYcGNinvGPpQ!2e0!7i13312!8i6656" target="_blank">cool tea plantation hills</a>, and onwards to the sandy white beaches, Sri Lanka is as beautiful as it is diverse. To capture this imagery, we drove close to 50,000 kilometers across every state and province so that you can virtually explore this beautiful landscape from coast to coast.  <br /><br />Start your tour &#8212; perhaps with a cup of Ceylon tea in hand &#8212; on the winding <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/beragala-tea-estates" target="_blank">Beragala-Hali Ela Highway.</a> Home to many of the world&#8217;s best brews, you&#8217;ll be able to see people growing, picking and packing tea among the lush rolling hills along the way.<br /><br /><span>The Bergala tea estates on the Beragala-Hali Ela Highway</span><br /><br />For even more majestic jungle and some mountain views, take a tour along the country&#8217;s first modern highway &#8212; the <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/colombo-kandy-road" target="_blank">Colombo-Kandy road</a>. Starting in Sri Lanka&#8217;s biggest city, you will journey through some spectacular scenery as you head inland to Kandy where you can see the <a href="https://en.wikipedia.org/wiki/Relic_of_the_tooth_of_the_Buddha" target="_blank">relic of the tooth of Buddha</a>.<br /><br /><span>You&#8217;ll see hills, jungle and many a three-wheeler on the Colombo-Kandy road</span><br /><br />You can then take virtual leap across the island to the Kandy-Jaffna highway, which heads out to the coast and down to the <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/elephant-pass-causeway" target="_blank">Elephant Pass Causeway</a>. While you may not see any elephants, this stretch of road connecting North and South Sri Lanka gives you a 360 degree view of the Indian Ocean on either side of the road.<br /><br /><span>The Elephant Pass Causeway is surrounded by the Indian Ocean</span><br /><br />While you&#8217;re on the coast why not check out <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/arugam-bay-road" target="_blank">Arugum Bay</a>? This popular surfing spot in the country&#8217;s southeast is renowned for its amazing point break. If you prefer spending time on the sand rather than on a board, the sleepy little fishing village of <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/point-pedro-beach" target="_blank">Point Pedro</a> on the northern tip of the island has some pristine beaches to explore.<br /><br /><span>Point Pedro is home to many remote beaches</span><br /><br />Once you&#8217;ve taken in Sri Lanka&#8217;s natural beauty, you might be ready to take in some culture. Head north to Anuradhapura, and catch a glimpse of the ancient <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/ruwanwelisaya" target="_blank">Ruwanwelisaya Stupa</a>. Believed to have <a href="https://en.wikipedia.org/wiki/Solosmasthana" target="_blank">been visited by the Buddha himself</a>, it was built in 140 B.C. and today remains one of the world&#8217;s tallest monuments, standing at over 100 meters.<br /><span><br /></span> <span>The ancient Ruwanwelisaya Stupa peaks out from behind the trees</span><br /><br />Why not complete your tour by heading back to Colombo where you can see <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/old-parliament-house" target="_blank">Old Parliament House</a>. Built during the British colonial era, it is home to the first democratic parliament, and the Independence Memorial Hall which commemorates Sri Lanka&#8217;s independence from British rule 1948.<br /><span><span></span></span><br /><div><a href="https://lh5.googleusercontent.com/MHL-eXvOuPR93S_QIq0dL-UMfvwTv-TpIuq8G9Im_8umXihqkzfQun4eTMdz7xPdzOPkKyPJxStRjPTs6sm5P5emVbkl9heezRtQgb-8mF-thauPHFrPaEybvb6H9CdMnC3jXNUK"><img border="0" height="426" src="https://lh5.googleusercontent.com/MHL-eXvOuPR93S_QIq0dL-UMfvwTv-TpIuq8G9Im_8umXihqkzfQun4eTMdz7xPdzOPkKyPJxStRjPTs6sm5P5emVbkl9heezRtQgb-8mF-thauPHFrPaEybvb6H9CdMnC3jXNUK" width="640"></a></div><span>Street View cars parked at the Independence Avenue</span><br /><br />We hope that visiting Sri Lanka with Google Maps (available on <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC" target="_blank">iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&#38;hl=en&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC" target="_blank">Android</a>) will inspire a deeper appreciation for the beauty and history of this beautiful country. Whether you continue your <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights" target="_blank">journey in Google Maps</a> or are inspired to visit in person, we invite you to  enjoy the Land of Lions.<br /><br />Posted by Nishant Nair, Program Manager, APAC Street View Operations <br /><br /></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on"><div dir="ltr" style="text-align: left;" trbidi="on"><br /></div>When the explorer <a href="https://en.wikipedia.org/wiki/Marco_Polo" >Marco Polo</a> visited Sri Lanka in 1265, he described it as “<a href="http://www.srilankaembassyrome.org/travel-and-tourism.html#_ftn1" >the finest island of its size in all the world</a>.” Tourists from around the world agree, as it’s become an increasingly popular travel destination, especially for those who want to explore the country’s <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/ruwanwelisaya" >rich history</a> and <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/point-pedro-beach" >natural beauty</a>. Now even more people around the world will be able to discover some of the jewels that this fine island has to offer — minus the treacherous sea voyage — with Street View. <br /><br />From the hustle and bustle of <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/nelum-pokuna" >downtown Colombo</a>, to the <a href="http://www.google.com/maps/@6.7840385,80.9663442,3a,75y,213.94h,87.85t/data=!3m6!1e1!3m4!1sZes3JwsCfdJYcGNinvGPpQ!2e0!7i13312!8i6656" >cool tea plantation hills</a>, and onwards to the sandy white beaches, Sri Lanka is as beautiful as it is diverse. To capture this imagery, we drove close to 50,000 kilometers across every state and province so that you can virtually explore this beautiful landscape from coast to coast.  <br /><br />Start your tour — perhaps with a cup of Ceylon tea in hand — on the winding <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/beragala-tea-estates" >Beragala-Hali Ela Highway.</a> Home to many of the world’s best brews, you’ll be able to see people growing, picking and packing tea among the lush rolling hills along the way.<br /><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1458177671311!6m8!1m7!1s2Lx2yr2vKUrHBnI4AlxOvw!2m2!1d6.783955802146044!2d80.9662372727805!3f120.1491749251273!4f-2.9160543391200378!5f0.7820865974627469" style="border: 0;" width="640"></iframe><br /><span style="color: #999999;">The Bergala tea estates on the Beragala-Hali Ela Highway</span><br /><br />For even more majestic jungle and some mountain views, take a tour along the country’s first modern highway — the <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/colombo-kandy-road" >Colombo-Kandy road</a>. Starting in Sri Lanka’s biggest city, you will journey through some spectacular scenery as you head inland to Kandy where you can see the <a href="https://en.wikipedia.org/wiki/Relic_of_the_tooth_of_the_Buddha" >relic of the tooth of Buddha</a>.<br /><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1458613302674!6m8!1m7!1sp-pTfq5JcubNAxU7Pk2xnQ!2m2!1d7.2528681!2d80.5038294!3f221.11082636094227!4f-8.985044661272354!5f0.4000000000000002" style="border: 0;" width="640"></iframe><br /><span style="color: #999999;">You’ll see hills, jungle and many a three-wheeler on the Colombo-Kandy road</span><br /><br />You can then take virtual leap across the island to the Kandy-Jaffna highway, which heads out to the coast and down to the <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/elephant-pass-causeway" >Elephant Pass Causeway</a>. While you may not see any elephants, this stretch of road connecting North and South Sri Lanka gives you a 360 degree view of the Indian Ocean on either side of the road.<br /><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2s!4v1458613555926!6m8!1m7!1sOXe8Tb_4lL9pASh_CGXxXw!2m2!1d9.517291610385524!2d80.40604337817659!3f208.58535171820202!4f-6.481151459880508!5f0.7820865974627469" style="border: 0;" width="600"></iframe><br /><span style="color: #999999;">The Elephant Pass Causeway is surrounded by the Indian Ocean</span><br /><br />While you’re on the coast why not check out <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/arugam-bay-road" >Arugum Bay</a>? This popular surfing spot in the country’s southeast is renowned for its amazing point break. If you prefer spending time on the sand rather than on a board, the sleepy little fishing village of <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/point-pedro-beach" >Point Pedro</a> on the northern tip of the island has some pristine beaches to explore.<br /><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1458187795934!6m8!1m7!1sFwZjGgAW532T1UCuHqjANw!2m2!1d9.8323275!2d80.2221056!3f20.335187333951996!4f-10.65700142659064!5f0.7820865974627469" style="border: 0;" width="640"></iframe><br /><span style="color: #999999;">Point Pedro is home to many remote beaches</span><br /><br />Once you’ve taken in Sri Lanka’s natural beauty, you might be ready to take in some culture. Head north to Anuradhapura, and catch a glimpse of the ancient <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/ruwanwelisaya" >Ruwanwelisaya Stupa</a>. Believed to have <a href="https://en.wikipedia.org/wiki/Solosmasthana" >been visited by the Buddha himself</a>, it was built in 140 B.C. and today remains one of the world’s tallest monuments, standing at over 100 meters.<br /><span style="background-color: #999999;"><iframe allowfullscreen="" frameborder="0" height="450" src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2sus!4v1458026202480!6m8!1m7!1sYu0YKHv3Gqq3emqC8N10VA!2m2!1d8.343823730996677!2d80.38933447314707!3f358.3742696137587!4f-8.0868844474019!5f0.7820865974627469" style="border: 0;" width="640"></iframe><br /></span> <span style="background-color: white; color: #999999;">The ancient Ruwanwelisaya Stupa peaks out from behind the trees</span><br /><br />Why not complete your tour by heading back to Colombo where you can see <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights/old-parliament-house" >Old Parliament House</a>. Built during the British colonial era, it is home to the first democratic parliament, and the Independence Memorial Hall which commemorates Sri Lanka’s independence from British rule 1948.<br /><span id="docs-internal-guid-da082cc8-9c26-18d5-deca-8e8a1803c461"><span style="background-color: white; font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"></span></span><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://lh5.googleusercontent.com/MHL-eXvOuPR93S_QIq0dL-UMfvwTv-TpIuq8G9Im_8umXihqkzfQun4eTMdz7xPdzOPkKyPJxStRjPTs6sm5P5emVbkl9heezRtQgb-8mF-thauPHFrPaEybvb6H9CdMnC3jXNUK" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" height="426" src="https://lh5.googleusercontent.com/MHL-eXvOuPR93S_QIq0dL-UMfvwTv-TpIuq8G9Im_8umXihqkzfQun4eTMdz7xPdzOPkKyPJxStRjPTs6sm5P5emVbkl9heezRtQgb-8mF-thauPHFrPaEybvb6H9CdMnC3jXNUK" style="border: none; transform: rotate(0rad);" width="640" /></a></div><span style="color: #999999;">Street View cars parked at the Independence Avenue</span><br /><br />We hope that visiting Sri Lanka with Google Maps (available on <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC" >iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&amp;hl=en&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC" >Android</a>) will inspire a deeper appreciation for the beauty and history of this beautiful country. Whether you continue your <a href="http://www.google.com/maps/streetview/#sri-lanka-highlights" >journey in Google Maps</a> or are inspired to visit in person, we invite you to  enjoy the Land of Lions.<br /><br />Posted by Nishant Nair, Program Manager, APAC Street View Operations <br /><br /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/ayubowan-sri-lanka/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Home Sweet Treehouse</title>
		<link>https://googledata.org/google-earth/home-sweet-treehouse/</link>
		<comments>https://googledata.org/google-earth/home-sweet-treehouse/#comments</comments>
		<pubDate>Fri, 18 Mar 2016 15:45:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=2d9771560957d1392fb8c8b49c837727</guid>
		<description><![CDATA[Have you ever dreamed of living in a treehouse? Maybe an igloo or a farm house? Or how about an RV&#8212;free to go wherever your wheels take you? Whatever your dream home may be, Google Maps can help make it a little less make-believe. Starting today you can customize your home and work addresses in Google Maps on Android with stickers, so your map is a little more you.<br /><div><span><span><img height="400" src="https://lh3.googleusercontent.com/--EQL0xdYRG529S6yo3WFTFeTbQUycTLI-vWEC6l9ixrbFeB582MvzxlNm5-IlD_Z1AFY5Qsvsibpc_OlCK5-dBXTIsDSY2dnqMMPxaebkTemyKVXj1I34dbWMyAZ7VGfwBWXKEU" width="202"></span></span></div>There are many benefits to saving your home and work addresses in Google Maps. You can use the new <a href="https://maps.googleblog.com/2016/01/do-i-stay-or-do-i-go-now-google-maps.html">driving mode</a> for one-tap access to driving directions from your home screen. If you use public transportation to commute, you can stop guessing when the train will arrive with quick access to real-time transportation information. <br /><br /><div></div>Home and work are not the only places you can label in Google Maps. For example, if you look up the best route to avoid traffic on your way to your kid&#8217;s school, or to see when the next bus is coming to get to your friend&#8217;s house for your favorite sitcom every Thursday, or the gym on Mondays and Wednesdays, you can now label these places for quick access to directions, traffic conditions, best routes and more.<br /><div><span><span><img height="400" src="https://lh5.googleusercontent.com/0cW3x9kcCJZd5w2ozWb3B__1GnlAAlHdpN1tlHFcCreA0QQjD96E-deU57CPM28TjJeZeIlxGj0fLqdQoec3oBn0YBMSginll2EtgTL2bcjg7r-4MbKuZBfr6f3s0DivgFEcR5x_" width="203"></span></span></div><br />To save <a href="https://maps.googleblog.com/2015/12/maps-minutes-hack-8-set-your-home-and.html">home and work </a>addresses and other destinations, just make sure you&#8217;re signed into your Google account. Then visit the Your Places tab or type an address, then label it. Once setup, you can just type "home", "work" or "gym" in the search bar to get directions and navigate quickly and easily from wherever you are.<br /><div><img height="479" src="https://lh6.googleusercontent.com/3H-ul7HH60G--3v6z6YS9uK-KZjbu2NHOInIqEueQ0oUHl2UvOX8vsqjrfu9695zcExmbnJpndz0wwGg89ZWLI5tjSbZWdLkjawNMqLrAutRH7Cu3Z0Kc4J0sGTF8BTfZwhyULS3" width="640"></div><br />What&#8217;s your dream home? If you&#8217;re a prince or princess, your castle awaits you.<br /><br /><div><a href="https://4.bp.blogspot.com/-AyBKrMklDWI/VuwZiPkEe0I/AAAAAAAAE0U/zsFIz8c493wlDBqKQ6PqHHpvmPZkJ0TAg/s1600/GoogleMaps_StickersLaunch.gif"><img border="0" height="640" src="https://4.bp.blogspot.com/-AyBKrMklDWI/VuwZiPkEe0I/AAAAAAAAE0U/zsFIz8c493wlDBqKQ6PqHHpvmPZkJ0TAg/s640/GoogleMaps_StickersLaunch.gif" width="640"></a></div><br /><div><br /></div><div></div><div></div><br /><br /><br /><i><br /></i> <i>Posted By: Beth Findley, Software Engineer Google Map</i>]]></description>
				<content:encoded><![CDATA[Have you ever dreamed of living in a treehouse? Maybe an igloo or a farm house? Or how about an RV—free to go wherever your wheels take you? Whatever your dream home may be, Google Maps can help make it a little less make-believe. Starting today you can customize your home and work addresses in Google Maps on Android with stickers, so your map is a little more you.<br /><div style="text-align: center;"><span id="docs-internal-guid-58e70046-86dc-3695-685b-74209dc2754e"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="400" src="https://lh3.googleusercontent.com/--EQL0xdYRG529S6yo3WFTFeTbQUycTLI-vWEC6l9ixrbFeB582MvzxlNm5-IlD_Z1AFY5Qsvsibpc_OlCK5-dBXTIsDSY2dnqMMPxaebkTemyKVXj1I34dbWMyAZ7VGfwBWXKEU" style="border: none; transform: rotate(0rad);" width="202" /></span></span></div>There are many benefits to saving your home and work addresses in Google Maps. You can use the new <a href="https://maps.googleblog.com/2016/01/do-i-stay-or-do-i-go-now-google-maps.html">driving mode</a> for one-tap access to driving directions from your home screen. If you use public transportation to commute, you can stop guessing when the train will arrive with quick access to real-time transportation information. <br /><br /><div style="text-align: center;"></div>Home and work are not the only places you can label in Google Maps. For example, if you look up the best route to avoid traffic on your way to your kid’s school, or to see when the next bus is coming to get to your friend’s house for your favorite sitcom every Thursday, or the gym on Mondays and Wednesdays, you can now label these places for quick access to directions, traffic conditions, best routes and more.<br /><div style="text-align: center;"><span id="docs-internal-guid-58e70046-8a34-ca0a-7222-4444f60c9e32"><span style="font-family: &quot;arial&quot;; font-size: 14.6667px; vertical-align: baseline; white-space: pre-wrap;"><img height="400" src="https://lh5.googleusercontent.com/0cW3x9kcCJZd5w2ozWb3B__1GnlAAlHdpN1tlHFcCreA0QQjD96E-deU57CPM28TjJeZeIlxGj0fLqdQoec3oBn0YBMSginll2EtgTL2bcjg7r-4MbKuZBfr6f3s0DivgFEcR5x_" style="border: none; transform: rotate(0rad);" width="203" /></span></span></div><br />To save <a href="https://maps.googleblog.com/2015/12/maps-minutes-hack-8-set-your-home-and.html">home and work </a>addresses and other destinations, just make sure you’re signed into your Google account. Then visit the Your Places tab or type an address, then label it. Once setup, you can just type "home", "work" or "gym" in the search bar to get directions and navigate quickly and easily from wherever you are.<br /><div style="text-align: center;"><img height="479" src="https://lh6.googleusercontent.com/3H-ul7HH60G--3v6z6YS9uK-KZjbu2NHOInIqEueQ0oUHl2UvOX8vsqjrfu9695zcExmbnJpndz0wwGg89ZWLI5tjSbZWdLkjawNMqLrAutRH7Cu3Z0Kc4J0sGTF8BTfZwhyULS3" style="border: none; font-family: Arial; font-size: 14.6667px; transform: rotate(0rad); white-space: pre-wrap;" width="640" /></div><br />What’s your dream home? If you’re a prince or princess, your castle awaits you.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-AyBKrMklDWI/VuwZiPkEe0I/AAAAAAAAE0U/zsFIz8c493wlDBqKQ6PqHHpvmPZkJ0TAg/s1600/GoogleMaps_StickersLaunch.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="https://4.bp.blogspot.com/-AyBKrMklDWI/VuwZiPkEe0I/AAAAAAAAE0U/zsFIz8c493wlDBqKQ6PqHHpvmPZkJ0TAg/s640/GoogleMaps_StickersLaunch.gif" width="640" /></a></div><br /><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"></div><div class="separator" style="clear: both; text-align: center;"></div><br /><br /><br /><i><br /></i> <i>Posted By: Beth Findley, Software Engineer Google Map</i>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/home-sweet-treehouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Your car has arrived on iOS and Android: More ways to get around with Google Maps</title>
		<link>https://googledata.org/google-earth/your-car-has-arrived-more-ways-to-get-around-with-google-maps/</link>
		<comments>https://googledata.org/google-earth/your-car-has-arrived-more-ways-to-get-around-with-google-maps/#comments</comments>
		<pubDate>Tue, 15 Mar 2016 16:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=827fccc245f3f6dec70d8f2db6e9e701</guid>
		<description><![CDATA[Navigating within major cities is never easy&#8212;it can take precious minutes to figure out whether it&#8217;s faster to hop on a bus, walk a few blocks, find a ride-sharing service, or hail a taxi. Starting today, it&#8217;s easier. When you search for directions using Google Maps on your iOS or Android device, we&#8217;ll show you a dedicated tab with information for ride services&#8212;in addition to the existing car, transit, walking, or biking options you&#8217;re familiar with. So when you&#8217;re leaving work to meet a friend for dinner, you can easily compare your options to find the fastest way there, without having to open multiple apps.<br /><br />In addition to our existing global ride service partner Uber, with this update we've added new providers across five countries: 99Taxis in Brazil, Ola Cabs in India, Hailo in the UK and Spain, mytaxi in Germany and Spain, and Gett in the UK.<br /><br /><div><a href="https://2.bp.blogspot.com/-RsKmWHMsh8o/VudCQ2RgMVI/AAAAAAAAEyc/4Sgjq0__meEV7f19a6rSXcF-zLkBCv6rg/s1600/Shot1.png"><img border="0" src="https://2.bp.blogspot.com/-RsKmWHMsh8o/VudCQ2RgMVI/AAAAAAAAEyc/4Sgjq0__meEV7f19a6rSXcF-zLkBCv6rg/s640/Shot1.png"></a></div><br />If you have a provider&#8217;s app installed and tap on the ride service tab, you&#8217;ll be able to see fare estimates and pick up times if a car is available near you. Select a service, and we&#8217;ll take you directly to their app for you to book your ride with one tap. When it makes sense, we&#8217;ll also show ride service availability when viewing the map in walking and transit directions, and multiple ride services options for each provider&#8212;where they exist. For example, if you&#8217;re using Uber, starting today, we&#8217;ll now show uberX, uberXL and UberBLACK for an easy and quick comparison.<br /><br /><div><a href="https://1.bp.blogspot.com/--A2zXLERcYg/VudCV__oTxI/AAAAAAAAEyg/_hh2i8ys008X0s1v9bVYlojktGSgxNLsw/s1600/Shot2.png"><img border="0" height="640" src="https://1.bp.blogspot.com/--A2zXLERcYg/VudCV__oTxI/AAAAAAAAEyg/_hh2i8ys008X0s1v9bVYlojktGSgxNLsw/s640/Shot2.png" width="360"></a></div><br />UPDATED 3/24/16: The feature is now available on both Android and iOS. So next time you&#8217;re looking to move around a city, open Google Maps on your phone to figure out your fastest mode of transport to get where you&#8217;re headed. <br /><br /><i>Posted by Holger Flier, Software Engineer</i><br /><br />]]></description>
				<content:encoded><![CDATA[Navigating within major cities is never easy—it can take precious minutes to figure out whether it’s faster to hop on a bus, walk a few blocks, find a ride-sharing service, or hail a taxi. Starting today, it’s easier. When you search for directions using Google Maps on your iOS or Android device, we’ll show you a dedicated tab with information for ride services—in addition to the existing car, transit, walking, or biking options you’re familiar with. So when you’re leaving work to meet a friend for dinner, you can easily compare your options to find the fastest way there, without having to open multiple apps.<br /><br />In addition to our existing global ride service partner Uber, with this update we've added new providers across five countries: 99Taxis in Brazil, Ola Cabs in India, Hailo in the UK and Spain, mytaxi in Germany and Spain, and Gett in the UK.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-RsKmWHMsh8o/VudCQ2RgMVI/AAAAAAAAEyc/4Sgjq0__meEV7f19a6rSXcF-zLkBCv6rg/s1600/Shot1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="https://2.bp.blogspot.com/-RsKmWHMsh8o/VudCQ2RgMVI/AAAAAAAAEyc/4Sgjq0__meEV7f19a6rSXcF-zLkBCv6rg/s640/Shot1.png" /></a></div><br />If you have a provider’s app installed and tap on the ride service tab, you’ll be able to see fare estimates and pick up times if a car is available near you. Select a service, and we’ll take you directly to their app for you to book your ride with one tap. When it makes sense, we’ll also show ride service availability when viewing the map in walking and transit directions, and multiple ride services options for each provider—where they exist. For example, if you’re using Uber, starting today, we’ll now show uberX, uberXL and UberBLACK for an easy and quick comparison.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/--A2zXLERcYg/VudCV__oTxI/AAAAAAAAEyg/_hh2i8ys008X0s1v9bVYlojktGSgxNLsw/s1600/Shot2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="https://1.bp.blogspot.com/--A2zXLERcYg/VudCV__oTxI/AAAAAAAAEyg/_hh2i8ys008X0s1v9bVYlojktGSgxNLsw/s640/Shot2.png" width="360" /></a></div><br />UPDATED 3/24/16: The feature is now available on both Android and iOS. So next time you’re looking to move around a city, open Google Maps on your phone to figure out your fastest mode of transport to get where you’re headed. <br /><br /><i>Posted by Holger Flier, Software Engineer</i><br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/your-car-has-arrived-more-ways-to-get-around-with-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>The Mzansi Experience: Discover South Africa on Google Maps</title>
		<link>https://googledata.org/google-earth/the-mzansi-experience-discover-south-africa-on-google-maps/</link>
		<comments>https://googledata.org/google-earth/the-mzansi-experience-discover-south-africa-on-google-maps/#comments</comments>
		<pubDate>Tue, 08 Mar 2016 09:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=e2aebda46521223d0d47a31e4299374f</guid>
		<description><![CDATA[Sitting at the southernmost tip of Africa, nestled between the great Indian and Atlantic Oceans ... to many, South Africa feels a world away for both Africans and international travellers. From today, you don&#8217;t need to let hours of plane travel or miles of ocean stand in the way of the &#8220;Mzansi experience:&#8221; a virtual trip to <a href="http://www.google.com/maps/streetview/#south-africa-the-mzansi-experience">South Africa awaits you in Google Maps</a>.  <br /><br />South Africa is known for its unique array of wildlife. Visiting Kruger National Park in Google Maps, you can see some of its majestic creatures as if you were there in real life. Catch a glimpse of a <a href="https://www.google.com/maps/@-25.3343206,31.8988352,3a,75y,334.47h,74.47t/data=!3m6!1e1!3m4!1sNekVzyWLrVrc0M6eIDDMzw!2e0!7i13312!8i6656">rhinoceros</a> grazing the plains, an&#160;<a href="https://www.google.com/maps/@-25.2750802,31.9291733,3a,75y,329.67h,83.17t/data=!3m6!1e1!3m4!1sZGX19OY_6axCuFCoOtziVg!2e0!7i13312!8i6656">elephant</a> enjoying a grassy snack, and a herd of <a href="https://www.google.com/maps/@-25.2628437,31.93606,3a,75y,330.58h,86.85t/data=!3m6!1e1!3m4!1sgsmu2Lyxsg6QC8FumYUjGQ!2e0!7i13312!8i6656">buffalo</a> charging against the wind. You may even spot a <a href="https://www.google.com/maps/@-22.9969648,31.3239322,3a,15y,290.6h,82.98t/data=!3m6!1e1!3m4!1ss_sXK5cW83RzF533SgLo3A!2e0!7i13312!8i6656">leopard</a>, who often remain elusive to tourists and locals alike.<br /><br /><div><a href="https://4.bp.blogspot.com/-hPa_ylBYWaw/Vt4Gn2fCiAI/AAAAAAAAExg/BeIAvc9Q-PY/s1600/Screen%2BShot%2B2016-03-07%2Bat%2B2.53.49%2BPM.png"><img border="0" height="368" src="https://4.bp.blogspot.com/-hPa_ylBYWaw/Vt4Gn2fCiAI/AAAAAAAAExg/BeIAvc9Q-PY/s640/Screen%2BShot%2B2016-03-07%2Bat%2B2.53.49%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/maps/@-25.2750802,31.9291733,3a,75y,329.67h,83.17t/data=!3m6!1e1!3m4!1sZGX19OY_6axCuFCoOtziVg!2e0!7i13312!8i6656">Elephant grazing in Kruger National Park, South Africa</a></div><br />Climbing atop <a href="https://www.google.com/maps/@-33.9577448,18.4029916,3a,75y,28.35h,89.17t/data=!3m6!1e1!3m4!1s7t3O8CzNNZp8os0uQWNBuQ!2e0!7i13312!8i6656">Table Mountain</a>, even on a cloudy day, gives you a breathtaking view of where civilization and nature collide in Cape Town. Feeling like you&#8217;re on top of the world has never been so easy as it is at <a href="https://www.google.pl/maps/@-34.0111294,18.9648939,3a,75y,345.25h,87.32t/data=!3m6!1e1!3m4!1sn8yHFgOplZhQfILJDlFV3Q!2e0!7i13312!8i6656?hl=en">Jonkershoek Nature Reserve</a> in the Western Cape.<br /><br /><div><a href="https://2.bp.blogspot.com/-gfNiL3E6ZtA/Vt4F6AmaMmI/AAAAAAAAExU/-cLpfoUGNuw/s1600/Screen%2BShot%2B2016-03-07%2Bat%2B2.50.46%2BPM.png"><img border="0" height="368" src="https://2.bp.blogspot.com/-gfNiL3E6ZtA/Vt4F6AmaMmI/AAAAAAAAExU/-cLpfoUGNuw/s640/Screen%2BShot%2B2016-03-07%2Bat%2B2.50.46%2BPM.png" width="640"></a></div><div><a href="https://www.google.pl/maps/@-34.0111294,18.9648939,3a,75y,345.25h,87.32t/data=!3m6!1e1!3m4!1sn8yHFgOplZhQfILJDlFV3Q!2e0!7i13312!8i6656?hl=en">Jonkershoek Nature Reserve, South Africa</a></div><br />For the beach bums out there, South Africa is a must. With Street View, you can watch the waves break at <a href="https://www.google.com/maps/@-34.0148377,18.3345025,3a,75y,240.62h,89.14t/data=!3m6!1e1!3m4!1skdLgnBBWf80oiNPXU9TJUw!2e0!7i13312!8i6656">Sandy Bay</a>, gaze at the clear blue sky and water at <a href="https://www.google.com/maps/@-33.9380225,18.3768258,3a,75y,233.58h,88.24t/data=!3m6!1e1!3m4!1sABKpv_5RFKqZAhgVdLK_aA!2e0!7i13312!8i6656">Clifton Beach</a>, go parasailing at <a href="https://www.google.com/maps/@-33.8514378,18.4883154,3a,75y,208.01h,81.58t/data=!3m6!1e1!3m4!1svKc8poWL5LQcsvJrHRpxXw!2e0!7i13312!8i6656">Sunset Beach</a> or just take a long walk along Durban&#8217;s <a href="https://www.google.pl/maps/@-29.8500855,31.0407177,3a,75y,264.9h,87.57t/data=!3m6!1e1!3m4!1sV5KcTWFik4219-zUNdiNaA!2e0!7i13312!8i6656?hl=en">Golden Mile</a>.<br /><br /><div><a href="https://3.bp.blogspot.com/-VdFxwbAo1Ng/Vt4FL5MaqyI/AAAAAAAAExM/bCp6P7vMfKM/s1600/Screen%2BShot%2B2016-03-07%2Bat%2B2.47.29%2BPM.png"><img border="0" height="366" src="https://3.bp.blogspot.com/-VdFxwbAo1Ng/Vt4FL5MaqyI/AAAAAAAAExM/bCp6P7vMfKM/s640/Screen%2BShot%2B2016-03-07%2Bat%2B2.47.29%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/maps/@-33.8514378,18.4883154,3a,75y,208.01h,81.58t/data=!3m6!1e1!3m4!1svKc8poWL5LQcsvJrHRpxXw!2e0!7i13312!8i6656">Sunset Beach, South Africa</a></div><br />This South African Street View tour is just a taste of these vast plains. We hope that visiting South Africa with Google Maps (available on <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC">iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&#38;hl=en&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC">Android</a>) will inspire a deeper appreciation for the country, its wildlife and show the beauty of the African continent. Whether you continue your <a href="http://www.google.com/maps/streetview/#south-africa-the-mzansi-experience">journey in Google Maps</a> or in person, we invite you to enjoy the views and landscapes of the <a href="https://en.wikipedia.org/wiki/Rainbow_nation">Rainbow Nation</a>.<br /><br /><span>Posted by Sven Tresp, Street View Special Collections Program Manager</span>]]></description>
				<content:encoded><![CDATA[Sitting at the southernmost tip of Africa, nestled between the great Indian and Atlantic Oceans ... to many, South Africa feels a world away for both Africans and international travellers. From today, you don’t need to let hours of plane travel or miles of ocean stand in the way of the “Mzansi experience:” a virtual trip to <a href="http://www.google.com/maps/streetview/#south-africa-the-mzansi-experience">South Africa awaits you in Google Maps</a>.  <br /><br />South Africa is known for its unique array of wildlife. Visiting Kruger National Park in Google Maps, you can see some of its majestic creatures as if you were there in real life. Catch a glimpse of a <a href="https://www.google.com/maps/@-25.3343206,31.8988352,3a,75y,334.47h,74.47t/data=!3m6!1e1!3m4!1sNekVzyWLrVrc0M6eIDDMzw!2e0!7i13312!8i6656">rhinoceros</a> grazing the plains, an&nbsp;<a href="https://www.google.com/maps/@-25.2750802,31.9291733,3a,75y,329.67h,83.17t/data=!3m6!1e1!3m4!1sZGX19OY_6axCuFCoOtziVg!2e0!7i13312!8i6656">elephant</a> enjoying a grassy snack, and a herd of <a href="https://www.google.com/maps/@-25.2628437,31.93606,3a,75y,330.58h,86.85t/data=!3m6!1e1!3m4!1sgsmu2Lyxsg6QC8FumYUjGQ!2e0!7i13312!8i6656">buffalo</a> charging against the wind. You may even spot a <a href="https://www.google.com/maps/@-22.9969648,31.3239322,3a,15y,290.6h,82.98t/data=!3m6!1e1!3m4!1ss_sXK5cW83RzF533SgLo3A!2e0!7i13312!8i6656">leopard</a>, who often remain elusive to tourists and locals alike.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-hPa_ylBYWaw/Vt4Gn2fCiAI/AAAAAAAAExg/BeIAvc9Q-PY/s1600/Screen%2BShot%2B2016-03-07%2Bat%2B2.53.49%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://4.bp.blogspot.com/-hPa_ylBYWaw/Vt4Gn2fCiAI/AAAAAAAAExg/BeIAvc9Q-PY/s640/Screen%2BShot%2B2016-03-07%2Bat%2B2.53.49%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/@-25.2750802,31.9291733,3a,75y,329.67h,83.17t/data=!3m6!1e1!3m4!1sZGX19OY_6axCuFCoOtziVg!2e0!7i13312!8i6656">Elephant grazing in Kruger National Park, South Africa</a></div><br />Climbing atop <a href="https://www.google.com/maps/@-33.9577448,18.4029916,3a,75y,28.35h,89.17t/data=!3m6!1e1!3m4!1s7t3O8CzNNZp8os0uQWNBuQ!2e0!7i13312!8i6656">Table Mountain</a>, even on a cloudy day, gives you a breathtaking view of where civilization and nature collide in Cape Town. Feeling like you’re on top of the world has never been so easy as it is at <a href="https://www.google.pl/maps/@-34.0111294,18.9648939,3a,75y,345.25h,87.32t/data=!3m6!1e1!3m4!1sn8yHFgOplZhQfILJDlFV3Q!2e0!7i13312!8i6656?hl=en">Jonkershoek Nature Reserve</a> in the Western Cape.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-gfNiL3E6ZtA/Vt4F6AmaMmI/AAAAAAAAExU/-cLpfoUGNuw/s1600/Screen%2BShot%2B2016-03-07%2Bat%2B2.50.46%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://2.bp.blogspot.com/-gfNiL3E6ZtA/Vt4F6AmaMmI/AAAAAAAAExU/-cLpfoUGNuw/s640/Screen%2BShot%2B2016-03-07%2Bat%2B2.50.46%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.pl/maps/@-34.0111294,18.9648939,3a,75y,345.25h,87.32t/data=!3m6!1e1!3m4!1sn8yHFgOplZhQfILJDlFV3Q!2e0!7i13312!8i6656?hl=en">Jonkershoek Nature Reserve, South Africa</a></div><br />For the beach bums out there, South Africa is a must. With Street View, you can watch the waves break at <a href="https://www.google.com/maps/@-34.0148377,18.3345025,3a,75y,240.62h,89.14t/data=!3m6!1e1!3m4!1skdLgnBBWf80oiNPXU9TJUw!2e0!7i13312!8i6656">Sandy Bay</a>, gaze at the clear blue sky and water at <a href="https://www.google.com/maps/@-33.9380225,18.3768258,3a,75y,233.58h,88.24t/data=!3m6!1e1!3m4!1sABKpv_5RFKqZAhgVdLK_aA!2e0!7i13312!8i6656">Clifton Beach</a>, go parasailing at <a href="https://www.google.com/maps/@-33.8514378,18.4883154,3a,75y,208.01h,81.58t/data=!3m6!1e1!3m4!1svKc8poWL5LQcsvJrHRpxXw!2e0!7i13312!8i6656">Sunset Beach</a> or just take a long walk along Durban’s <a href="https://www.google.pl/maps/@-29.8500855,31.0407177,3a,75y,264.9h,87.57t/data=!3m6!1e1!3m4!1sV5KcTWFik4219-zUNdiNaA!2e0!7i13312!8i6656?hl=en">Golden Mile</a>.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-VdFxwbAo1Ng/Vt4FL5MaqyI/AAAAAAAAExM/bCp6P7vMfKM/s1600/Screen%2BShot%2B2016-03-07%2Bat%2B2.47.29%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="366" src="https://3.bp.blogspot.com/-VdFxwbAo1Ng/Vt4FL5MaqyI/AAAAAAAAExM/bCp6P7vMfKM/s640/Screen%2BShot%2B2016-03-07%2Bat%2B2.47.29%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/@-33.8514378,18.4883154,3a,75y,208.01h,81.58t/data=!3m6!1e1!3m4!1svKc8poWL5LQcsvJrHRpxXw!2e0!7i13312!8i6656">Sunset Beach, South Africa</a></div><br />This South African Street View tour is just a taste of these vast plains. We hope that visiting South Africa with Google Maps (available on <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC">iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&amp;hl=en&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC">Android</a>) will inspire a deeper appreciation for the country, its wildlife and show the beauty of the African continent. Whether you continue your <a href="http://www.google.com/maps/streetview/#south-africa-the-mzansi-experience">journey in Google Maps</a> or in person, we invite you to enjoy the views and landscapes of the <a href="https://en.wikipedia.org/wiki/Rainbow_nation">Rainbow Nation</a>.<br /><br /><span class="byline-author">Posted by Sven Tresp, Street View Special Collections Program Manager</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/the-mzansi-experience-discover-south-africa-on-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Tōhoku in pictures: Five years after the Great East Japan earthquake and tsunami</title>
		<link>https://googledata.org/google-earth/tohoku-in-pictures-five-years-after-the-great-east-japan-earthquake-and-tsunami/</link>
		<comments>https://googledata.org/google-earth/tohoku-in-pictures-five-years-after-the-great-east-japan-earthquake-and-tsunami/#comments</comments>
		<pubDate>Mon, 07 Mar 2016 01:05:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=a9cae0a20e360ecafb7e9bf70c4df52f</guid>
		<description><![CDATA[<div dir="ltr">This week marks the fifth anniversary of the <a href="https://en.wikipedia.org/wiki/2011_T%C5%8Dhoku_earthquake_and_tsunami" target="_blank">Great East Japan earthquake and tsunami</a>. The most <a href="https://en.wikipedia.org/wiki/List_of_earthquakes_in_Japan" target="_blank">powerful quake recorded</a> in Japan&#8217;s history, it devastated coastal areas across northeastern parts of the country. For the last five years, Google Maps has been capturing 360-degree, panoramic imagery of these areas with Street View cameras, as well as aerial photographs. These snapshots show what has changed in the aftermath of the disaster&#8212;and what hasn&#8217;t.<br /><br />You can now see updated Street View imagery from 59 cities, 19 towns and 4 villages from the <a href="https://www.google.co.jp/maps/@36.8300884,140.7900928,3a,75y,149.76h,97.37t/data=!3m7!1e1!3m5!1s-LyL4-mFfOuzRhYmqr4ZZA!2e0!5s20160101T000000!7i13312!8i6656!6m1!1e1" target="_blank">Ibaraki</a>, <a href="https://www.google.com/maps/@39.7376585,141.973518,3a,75.5y,52.97h,101.39t/data=!3m6!1e1!3m4!1swDXvkO8U2anBl-Y7AzdbRQ!2e0!7i13312!8i6656" target="_blank">Iwate</a>, <a href="https://www.google.com/maps/@37.4829281,141.0374099,3a,89.4y,9.11h,101.59t/data=!3m6!1e1!3m4!1stJJhLrbofI6VggbagKdAIg!2e0!7i13312!8i6656" target="_blank">Fukushima</a> and <a href="https://www.google.com/maps/@39.7376585,141.973518,3a,75.5y,52.97h,101.39t/data=!3m6!1e1!3m4!1swDXvkO8U2anBl-Y7AzdbRQ!2e0!7i13312!8i6656" target="_blank">Miyagi</a> prefectures, which was collected between June 2015 and January 2016. Part of the &#8220;<a href="https://www.miraikioku.com/en/" target="_blank">Great East Japan Earthquake Digital Archive Project</a>," this is the third Street View imagery update since the disaster. <br /><br />By using Street View technology to record, exhibit and archive the damage, we hope to give people&#8212;both those who used to live there, and those who have never been&#8212;a way to see and understand the destruction caused by the earthquake and tsunami. It may also give future generations a vivid way to understand and remember what happened.<br /><br /><br /><br />One of the areas most affected by the disaster was Fukushima prefecture. Naraha in Fukushima was an evacuation zone until September of last year, but is now being rebuilt and repopulated. The people of Naraha wanted to capture this rebuilding process, so they borrowed the Street View Trekker as part of the <a href="https://maps.google.com/intl/ALL_ALL/maps/about/partners/streetview/trekker/" target="_blank">Trekker loan program</a> so they could show the world what Naraha looks like today and share their hopes for the future. <br /><br />In addition to the updated Street View imagery, we also have satellite and aerial imagery of the coast stretching from Hachinohe to Iwaki from before and after the disaster. As this timelapse with scenes from the Iwate, Miyagi and Fukushima prefectures shows, the road to recovery is a long one. <br /><br /><br /><br /><br />Miyako was one of the areas most devastated <a href="https://www.google.com.au/search?q=miyako+tsunami&#38;biw=1164&#38;bih=565&#38;tbm=isch&#38;imgil=_XDiS5Eba9zk_M%253A%253B1C-a0Pc1YCfY7M%253Bhttp%25253A%25252F%25252Fwww.telegraph.co.uk%25252Fnews%25252Fpicturegalleries%25252Fworldnews%25252F9131914%25252FJapan-earthquake-and-tsunami-anniversary-30-powerful-images-of-the-disaster.html&#38;source=iu&#38;pf=m&#38;fir=_XDiS5Eba9zk_M%253A%252C1C-a0Pc1YCfY7M%252C_&#38;usg=__soGsVsFgHFpnadFPbo4mpmQ1w7w%3D&#38;dpr=1.25&#38;ved=0ahUKEwjFgK7Y0aXLAhVDkZQKHYGGDUYQyjcILg&#38;ei=asTYVsWjBMOi0gSBjbawBA#tbm=isch&#38;q=miyako+tsunami+wave" target="_blank">by the tsunami</a>, with waters reaching at least <a href="https://en.wikipedia.org/wiki/Miyako,_Iwate" target="_blank">37.9 meters above sea leve</a>l.&#160;<span><span>As this timelapse shows, the seaside town was filled with homes and businesses before the earthquake struck in 2011. Everything was swept away by the tsunami. Clearing the rubble from the disaster took years; today, most of the new houses are being built on top of the mountain, not by the sea, in case of a future tsunami.</span></span><br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><img src="https://lh3.googleusercontent.com/1fbV-POiIUNmodk-boiQDWpJK98TNE7coRARn6EJRXqZ2pNmaCR2IMaObmdAmfkZ31BlKTN_jF6Xuc2bJHsVaAbu1YmVbtNUzOl096THo_ydZzSDvwAQpw8QfsFMLOebnBug4Ous"></td></tr><tr><td>View of Miyako from 2009 to 2016</td></tr></tbody></table><div><span><span></span></span></div>You can see all this imagery, as well as Street View images of these areas from before the disaster on the Google Maps "<a href="https://www.miraikioku.com/en/" target="_blank">Memories for the Future</a>" page.<br /><br />Posted by Wakaba Ohkura, Google Street View Program Manager<br /><div dir="ltr"><br /></div></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">This week marks the fifth anniversary of the <a href="https://en.wikipedia.org/wiki/2011_T%C5%8Dhoku_earthquake_and_tsunami" >Great East Japan earthquake and tsunami</a>. The most <a href="https://en.wikipedia.org/wiki/List_of_earthquakes_in_Japan" >powerful quake recorded</a> in Japan’s history, it devastated coastal areas across northeastern parts of the country. For the last five years, Google Maps has been capturing 360-degree, panoramic imagery of these areas with Street View cameras, as well as aerial photographs. These snapshots show what has changed in the aftermath of the disaster—and what hasn’t.<br /><br />You can now see updated Street View imagery from 59 cities, 19 towns and 4 villages from the <a href="https://www.google.co.jp/maps/@36.8300884,140.7900928,3a,75y,149.76h,97.37t/data=!3m7!1e1!3m5!1s-LyL4-mFfOuzRhYmqr4ZZA!2e0!5s20160101T000000!7i13312!8i6656!6m1!1e1" >Ibaraki</a>, <a href="https://www.google.com/maps/@39.7376585,141.973518,3a,75.5y,52.97h,101.39t/data=!3m6!1e1!3m4!1swDXvkO8U2anBl-Y7AzdbRQ!2e0!7i13312!8i6656" >Iwate</a>, <a href="https://www.google.com/maps/@37.4829281,141.0374099,3a,89.4y,9.11h,101.59t/data=!3m6!1e1!3m4!1stJJhLrbofI6VggbagKdAIg!2e0!7i13312!8i6656" >Fukushima</a> and <a href="https://www.google.com/maps/@39.7376585,141.973518,3a,75.5y,52.97h,101.39t/data=!3m6!1e1!3m4!1swDXvkO8U2anBl-Y7AzdbRQ!2e0!7i13312!8i6656" >Miyagi</a> prefectures, which was collected between June 2015 and January 2016. Part of the “<a href="https://www.miraikioku.com/en/" >Great East Japan Earthquake Digital Archive Project</a>," this is the third Street View imagery update since the disaster. <br /><br />By using Street View technology to record, exhibit and archive the damage, we hope to give people—both those who used to live there, and those who have never been—a way to see and understand the destruction caused by the earthquake and tsunami. It may also give future generations a vivid way to understand and remember what happened.<br /><br /><iframe allowfullscreen="" frameborder="0" height="360" src="https://www.youtube.com/embed/SZyET8Y34Uo" width="640"></iframe><br /><br />One of the areas most affected by the disaster was Fukushima prefecture. Naraha in Fukushima was an evacuation zone until September of last year, but is now being rebuilt and repopulated. The people of Naraha wanted to capture this rebuilding process, so they borrowed the Street View Trekker as part of the <a href="https://maps.google.com/intl/ALL_ALL/maps/about/partners/streetview/trekker/" >Trekker loan program</a> so they could show the world what Naraha looks like today and share their hopes for the future. <br /><br />In addition to the updated Street View imagery, we also have satellite and aerial imagery of the coast stretching from Hachinohe to Iwaki from before and after the disaster. As this timelapse with scenes from the Iwate, Miyagi and Fukushima prefectures shows, the road to recovery is a long one. <br /><br /><iframe allowfullscreen="" frameborder="0" height="360" src="https://www.youtube.com/embed/oiD9ek-YD0c" width="640"></iframe><br /><br /><br />Miyako was one of the areas most devastated <a href="https://www.google.com.au/search?q=miyako+tsunami&amp;biw=1164&amp;bih=565&amp;tbm=isch&amp;imgil=_XDiS5Eba9zk_M%253A%253B1C-a0Pc1YCfY7M%253Bhttp%25253A%25252F%25252Fwww.telegraph.co.uk%25252Fnews%25252Fpicturegalleries%25252Fworldnews%25252F9131914%25252FJapan-earthquake-and-tsunami-anniversary-30-powerful-images-of-the-disaster.html&amp;source=iu&amp;pf=m&amp;fir=_XDiS5Eba9zk_M%253A%252C1C-a0Pc1YCfY7M%252C_&amp;usg=__soGsVsFgHFpnadFPbo4mpmQ1w7w%3D&amp;dpr=1.25&amp;ved=0ahUKEwjFgK7Y0aXLAhVDkZQKHYGGDUYQyjcILg&amp;ei=asTYVsWjBMOi0gSBjbawBA#tbm=isch&amp;q=miyako+tsunami+wave" >by the tsunami</a>, with waters reaching at least <a href="https://en.wikipedia.org/wiki/Miyako,_Iwate" >37.9 meters above sea leve</a>l.&nbsp;<span style="background-color: white; color: #222222;"><span style="font-family: Times, Times New Roman, serif;">As this timelapse shows, the seaside town was filled with homes and businesses before the earthquake struck in 2011. Everything was swept away by the tsunami. Clearing the rubble from the disaster took years; today, most of the new houses are being built on top of the mountain, not by the sea, in case of a future tsunami.</span></span><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><img src="https://lh3.googleusercontent.com/1fbV-POiIUNmodk-boiQDWpJK98TNE7coRARn6EJRXqZ2pNmaCR2IMaObmdAmfkZ31BlKTN_jF6Xuc2bJHsVaAbu1YmVbtNUzOl096THo_ydZzSDvwAQpw8QfsFMLOebnBug4Ous" style="border: none; margin-left: auto; margin-right: auto; transform: rotate(0rad);" /></td></tr><tr><td class="tr-caption" style="text-align: center;">View of Miyako from 2009 to 2016</td></tr></tbody></table><div style="text-align: center;"><span id="docs-internal-guid-20daf4ed-4e5b-26c8-2dc4-6ba3e1d373a7"><span style="background-color: white; color: #222222; font-family: &quot;open sans&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"></span></span></div>You can see all this imagery, as well as Street View images of these areas from before the disaster on the Google Maps "<a href="https://www.miraikioku.com/en/" >Memories for the Future</a>" page.<br /><br />Posted by Wakaba Ohkura, Google Street View Program Manager<br /><div dir="ltr" style="text-align: left;" trbidi="on"><br /></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/tohoku-in-pictures-five-years-after-the-great-east-japan-earthquake-and-tsunami/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>The Last Great Race in Street View</title>
		<link>https://googledata.org/google-earth/the-last-great-race-in-street-view/</link>
		<comments>https://googledata.org/google-earth/the-last-great-race-in-street-view/#comments</comments>
		<pubDate>Thu, 03 Mar 2016 15:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=4d4a3570e76d8778b2144b75956dd02d</guid>
		<description><![CDATA[Every March, dozens of competitors and hundreds of dogs gather in Anchorage, Alaska for the start of a dog sled race that travels more than 1,000 miles to the <a href="https://www.google.com/maps/place/Nome,+AK/@64.5240837,-165.5519117,11z/data=!3m1!4b1!4m2!3m1!1s0x57311a2816385579:0x417531715876844c" target="_blank">west coast city of Nome</a>. <a href="http://iditarod.com/" target="_blank">The Iditarod Trail Sled Dog Race</a> requires the sled drivers or &#8220;mushers&#8221; to safely guide their dogs across the wilderness of Alaska through steep mountainous terrain, extremes of weather, and days of sleep deprivation. A British reporter covering the 1978 Iditarod tagged it &#8220;The Last Great Race on Earth.&#8221;<br /><div><br /></div><div><a href="https://3.bp.blogspot.com/-K30S3GuIEN0/VtejkfrwtoI/AAAAAAAAEws/g9ZCu9xwfcw/s1600/Screen%2BShot%2B2016-03-02%2Bat%2B6.37.41%2BPM.png"><img border="0" height="368" src="https://3.bp.blogspot.com/-K30S3GuIEN0/VtejkfrwtoI/AAAAAAAAEws/g9ZCu9xwfcw/s640/Screen%2BShot%2B2016-03-02%2Bat%2B6.37.41%2BPM.png" width="640"></a></div><div><a href="https://www.google.com/maps/@64.571418,-149.0163929,3a,30y,255.11h,84.63t/data=!3m6!1e1!3m4!1saK_pibd2a3oPlcBRER8Itg!2e0!7i13312!8i6656" target="_blank">The Street View camera heads towards the first checkpoint onboard sled #80</a></div><br />The Iditarod Trail is a <a href="http://www.blm.gov/ak/st/en/prog/nlcs/iditarod.html" target="_blank">National Historic trail</a> that evolved as busy winter highway as people flocked to Alaska during the gold rush of the 1890s and 1900s. During the months that ocean access to western communities was frozen, dog sleds delivered groceries, mail, and even the preacher. On their return trip, they hauled gold and furs all the way to Anchorage or Fairbanks. On some days more than a hundred sleds headed over the Alaska Range, traveling 50 or more miles a day. Like the stagecoaches of the Old West, the mushers would stop at roadhouses along the route to rest and feed the dogs, and themselves.<br /><br /><div><a href="https://4.bp.blogspot.com/-lFZ55QYUaNs/VtekwPeqpvI/AAAAAAAAEw8/qqmkrzpYlcY/s1600/Screen%2BShot%2B2016-03-02%2Bat%2B6.42.28%2BPM.png"><img border="0" height="368" src="https://4.bp.blogspot.com/-lFZ55QYUaNs/VtekwPeqpvI/AAAAAAAAEw8/qqmkrzpYlcY/s640/Screen%2BShot%2B2016-03-02%2Bat%2B6.42.28%2BPM.png" width="640"></a></div><a href="https://www.google.com/maps/@64.7437839,-156.9538784,3a,30y,238.62h,62.2t/data=!3m6!1e1!3m4!1slN9MMZ9vwTuDIl6M8toZcQ!2e0!7i13312!8i6656" target="_blank">At the checkpoint the musher&#8217;s first responsibility is to make sure his sled team is fed and rested.</a>&#160;<a href="https://www.google.com/maps/@64.7437839,-156.9538784,3a,30y,238.62h,62.2t/data=!3m6!1e1!3m4!1slN9MMZ9vwTuDIl6M8toZcQ!2e0!7i13312!8i6656" target="_blank">Straw is used to provide insulation from the cold ground and special wraps help keep the dogs warm.</a><br /><br />Despite the long history of mushing in Alaska, the development of snow machines in the 1960s removed its role as a major mode of transportation, and it became primarily a recreational activity. The <a href="http://iditarod.com/about/history/" target="_blank">Iditarod Race</a> evolved as a way to save both sled dog culture and the heritage of the Iditarod Trail. Competitors and their <a href="http://iditarod.com/race/" target="_blank">dog sled teams travel from checkpoint to checkpoint</a>, just like the freight sleds did in years past. And just like those times, it&#8217;s not always an easy ride&#8212;the terrain and variable weather conditions present real challenges for the mushers, which the Google Trekker camera discovered for itself during the 2015 Iditarod.<br /><br /><div><a href="https://2.bp.blogspot.com/-JWaiaxYGHwE/VtejGf_rwYI/AAAAAAAAEwo/w8nyYdEbR-Q/s1600/IMG_0521.jpg"><img border="0" height="426" src="https://2.bp.blogspot.com/-JWaiaxYGHwE/VtejGf_rwYI/AAAAAAAAEwo/w8nyYdEbR-Q/s640/IMG_0521.jpg" width="640"></a></div><div>The Google Street View Trekker wanders free near the Galena checkpoint on the Iditarod Trail</div><div><br /></div>Due to unseasonably warm weather conditions over Anchorage and the Alaska Range, the route of the 2015 race was switched to begin in Fairbanks, Alaska. At the traditional &#8220;ceremonial start&#8221; (held in Anchorage), a special sled #80 driven by <a href="http://iditarod.com/race/1984/mushers/224-Dean-Osmar/" target="_blank">Dean Osmar</a>, the 1984 Iditarod Champion, towed a second sled with a Googler wearing the trekker. The slushy conditions led to an 11-mile adventure complete with <a href="https://www.google.com/maps/@61.2009003,-149.8350453,3a,37.5y,108.56h,74.53t/data=!3m6!1e1!3m4!1sHjfEJ9u3PWJj6EBXS6nKDw!2e0!7i13312!8i6656" target="_blank">frozen puddles</a>, <a href="https://www.google.com/maps/@61.2003279,-149.8332769,3a,32.9y,144.35h,77.64t/data=!3m6!1e1!3m4!1swqJ8wiKdqNvJoCfod74ubA!2e0!7i13312!8i6656" target="_blank">cheering spectators</a>, <a href="https://www.google.com/maps/@61.1745461,-149.7946975,3a,55y,127.45h,78.09t/data=!3m6!1e1!3m4!1sKOy_eebDYkPrbZ5OZozt1Q!2e0!7i13312!8i6656" target="_blank">crashes</a>, <a href="https://www.google.com/maps/@61.1847221,-149.7940968,3a,37.1y,214.35h,76.64t/data=!3m6!1e1!3m4!1setprn88WTXyk0qCVvuhGmw!2e0!7i13312!8i6656" target="_blank">pink flamingos</a> and a <a href="https://www.google.com/maps/@61.2004083,-149.8334296,3a,37.5y,158.33h,72.68t/data=!3m6!1e1!3m4!1sFiz8cNdm2giB55DEyAupeQ!2e0!7i13312!8i6656" target="_blank">man-sized penguin</a>. Sometimes our mission to map the whole world is harder than it looks! <br /><br />Learning from this experience, we later successfully navigated the first 60-mile leg of the official 2015 route. Now you can follow our mushing adventures in <a href="https://www.google.com/maps/@61.2185578,-149.8899986,3a,40.6y,89.67h,93.55t/data=!3m6!1e1!3m4!1s0SrWaKf29omlsEePa6oNNg!2e0!7i13312!8i6656" target="_blank">Anchorage</a> and <a href="https://www.google.com/maps/@64.7720223,-147.9967594,3a,32.3y,223.99h,79.06t/data=!3m6!1e1!3m4!1sxiSNXOGBPWtV4eqM8-ajeg!2e0!7i13312!8i6656" target="_blank">Fairbanks</a>, explore the rural Alaska <a href="http://www.google.com/maps/streetview/#the-iditarod-alaska" target="_blank">communities of Galena, Unalakleet and Nome</a>, and see the race checkpoints and finish line&#8212;all in Google Street View. This cold-weather adventure is literally at your fingertips directly from your mobile device when you download the Google Map for Mobile app on <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC" target="_blank">iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&#38;hl=en&#38;utm_source=sportsblog&#38;utm_medium=ctr&#38;utm_campaign=SpC" target="_blank">Android</a>. And if you&#8217;re in the area in person, you can also explore and navigate to other popular spots across Anchorage and Fairbanks. Hike!<br /><br />Posted by John Bailey, Program Manager for Google Geo Education]]></description>
				<content:encoded><![CDATA[Every March, dozens of competitors and hundreds of dogs gather in Anchorage, Alaska for the start of a dog sled race that travels more than 1,000 miles to the <a href="https://www.google.com/maps/place/Nome,+AK/@64.5240837,-165.5519117,11z/data=!3m1!4b1!4m2!3m1!1s0x57311a2816385579:0x417531715876844c" >west coast city of Nome</a>. <a href="http://iditarod.com/" >The Iditarod Trail Sled Dog Race</a> requires the sled drivers or “mushers” to safely guide their dogs across the wilderness of Alaska through steep mountainous terrain, extremes of weather, and days of sleep deprivation. A British reporter covering the 1978 Iditarod tagged it “The Last Great Race on Earth.”<br /><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-K30S3GuIEN0/VtejkfrwtoI/AAAAAAAAEws/g9ZCu9xwfcw/s1600/Screen%2BShot%2B2016-03-02%2Bat%2B6.37.41%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://3.bp.blogspot.com/-K30S3GuIEN0/VtejkfrwtoI/AAAAAAAAEws/g9ZCu9xwfcw/s640/Screen%2BShot%2B2016-03-02%2Bat%2B6.37.41%2BPM.png" width="640" /></a></div><div style="text-align: center;"><a href="https://www.google.com/maps/@64.571418,-149.0163929,3a,30y,255.11h,84.63t/data=!3m6!1e1!3m4!1saK_pibd2a3oPlcBRER8Itg!2e0!7i13312!8i6656" >The Street View camera heads towards the first checkpoint onboard sled #80</a></div><br />The Iditarod Trail is a <a href="http://www.blm.gov/ak/st/en/prog/nlcs/iditarod.html" >National Historic trail</a> that evolved as busy winter highway as people flocked to Alaska during the gold rush of the 1890s and 1900s. During the months that ocean access to western communities was frozen, dog sleds delivered groceries, mail, and even the preacher. On their return trip, they hauled gold and furs all the way to Anchorage or Fairbanks. On some days more than a hundred sleds headed over the Alaska Range, traveling 50 or more miles a day. Like the stagecoaches of the Old West, the mushers would stop at roadhouses along the route to rest and feed the dogs, and themselves.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-lFZ55QYUaNs/VtekwPeqpvI/AAAAAAAAEw8/qqmkrzpYlcY/s1600/Screen%2BShot%2B2016-03-02%2Bat%2B6.42.28%2BPM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="368" src="https://4.bp.blogspot.com/-lFZ55QYUaNs/VtekwPeqpvI/AAAAAAAAEw8/qqmkrzpYlcY/s640/Screen%2BShot%2B2016-03-02%2Bat%2B6.42.28%2BPM.png" width="640" /></a></div><a href="https://www.google.com/maps/@64.7437839,-156.9538784,3a,30y,238.62h,62.2t/data=!3m6!1e1!3m4!1slN9MMZ9vwTuDIl6M8toZcQ!2e0!7i13312!8i6656" >At the checkpoint the musher’s first responsibility is to make sure his sled team is fed and rested.</a>&nbsp;<a href="https://www.google.com/maps/@64.7437839,-156.9538784,3a,30y,238.62h,62.2t/data=!3m6!1e1!3m4!1slN9MMZ9vwTuDIl6M8toZcQ!2e0!7i13312!8i6656" >Straw is used to provide insulation from the cold ground and special wraps help keep the dogs warm.</a><br /><br />Despite the long history of mushing in Alaska, the development of snow machines in the 1960s removed its role as a major mode of transportation, and it became primarily a recreational activity. The <a href="http://iditarod.com/about/history/" >Iditarod Race</a> evolved as a way to save both sled dog culture and the heritage of the Iditarod Trail. Competitors and their <a href="http://iditarod.com/race/" >dog sled teams travel from checkpoint to checkpoint</a>, just like the freight sleds did in years past. And just like those times, it’s not always an easy ride—the terrain and variable weather conditions present real challenges for the mushers, which the Google Trekker camera discovered for itself during the 2015 Iditarod.<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-JWaiaxYGHwE/VtejGf_rwYI/AAAAAAAAEwo/w8nyYdEbR-Q/s1600/IMG_0521.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="426" src="https://2.bp.blogspot.com/-JWaiaxYGHwE/VtejGf_rwYI/AAAAAAAAEwo/w8nyYdEbR-Q/s640/IMG_0521.jpg" width="640" /></a></div><div style="text-align: center;">The Google Street View Trekker wanders free near the Galena checkpoint on the Iditarod Trail</div><div style="text-align: center;"><br /></div>Due to unseasonably warm weather conditions over Anchorage and the Alaska Range, the route of the 2015 race was switched to begin in Fairbanks, Alaska. At the traditional “ceremonial start” (held in Anchorage), a special sled #80 driven by <a href="http://iditarod.com/race/1984/mushers/224-Dean-Osmar/" >Dean Osmar</a>, the 1984 Iditarod Champion, towed a second sled with a Googler wearing the trekker. The slushy conditions led to an 11-mile adventure complete with <a href="https://www.google.com/maps/@61.2009003,-149.8350453,3a,37.5y,108.56h,74.53t/data=!3m6!1e1!3m4!1sHjfEJ9u3PWJj6EBXS6nKDw!2e0!7i13312!8i6656" >frozen puddles</a>, <a href="https://www.google.com/maps/@61.2003279,-149.8332769,3a,32.9y,144.35h,77.64t/data=!3m6!1e1!3m4!1swqJ8wiKdqNvJoCfod74ubA!2e0!7i13312!8i6656" >cheering spectators</a>, <a href="https://www.google.com/maps/@61.1745461,-149.7946975,3a,55y,127.45h,78.09t/data=!3m6!1e1!3m4!1sKOy_eebDYkPrbZ5OZozt1Q!2e0!7i13312!8i6656" >crashes</a>, <a href="https://www.google.com/maps/@61.1847221,-149.7940968,3a,37.1y,214.35h,76.64t/data=!3m6!1e1!3m4!1setprn88WTXyk0qCVvuhGmw!2e0!7i13312!8i6656" >pink flamingos</a> and a <a href="https://www.google.com/maps/@61.2004083,-149.8334296,3a,37.5y,158.33h,72.68t/data=!3m6!1e1!3m4!1sFiz8cNdm2giB55DEyAupeQ!2e0!7i13312!8i6656" >man-sized penguin</a>. Sometimes our mission to map the whole world is harder than it looks! <br /><br />Learning from this experience, we later successfully navigated the first 60-mile leg of the official 2015 route. Now you can follow our mushing adventures in <a href="https://www.google.com/maps/@61.2185578,-149.8899986,3a,40.6y,89.67h,93.55t/data=!3m6!1e1!3m4!1s0SrWaKf29omlsEePa6oNNg!2e0!7i13312!8i6656" >Anchorage</a> and <a href="https://www.google.com/maps/@64.7720223,-147.9967594,3a,32.3y,223.99h,79.06t/data=!3m6!1e1!3m4!1sxiSNXOGBPWtV4eqM8-ajeg!2e0!7i13312!8i6656" >Fairbanks</a>, explore the rural Alaska <a href="http://www.google.com/maps/streetview/#the-iditarod-alaska" >communities of Galena, Unalakleet and Nome</a>, and see the race checkpoints and finish line—all in Google Street View. This cold-weather adventure is literally at your fingertips directly from your mobile device when you download the Google Map for Mobile app on <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC" >iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.maps&amp;hl=en&amp;utm_source=sportsblog&amp;utm_medium=ctr&amp;utm_campaign=SpC" >Android</a>. And if you’re in the area in person, you can also explore and navigate to other popular spots across Anchorage and Fairbanks. Hike!<br /><br />Posted by John Bailey, Program Manager for Google Geo Education]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/the-last-great-race-in-street-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Easily add pit stops to your trips – all over the world, on Android and iPhone</title>
		<link>https://googledata.org/google-earth/easily-add-pit-stops-to-your-trips-all-over-the-world-on-android-and-iphone/</link>
		<comments>https://googledata.org/google-earth/easily-add-pit-stops-to-your-trips-all-over-the-world-on-android-and-iphone/#comments</comments>
		<pubDate>Mon, 29 Feb 2016 14:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Lat Long]]></dc:creator>
				<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[google lat-long]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=b1e756473b9eb0a6b17cc6c8688fa5c1</guid>
		<description><![CDATA[Life is full of the unexpected&#8212;things that send us scrambling for a gas station in the middle of nowhere, looking up a florist on our way home from work or searching for a restaurant as we tour the back roads of our latest vacation destination. Finding and navigating to these last-minute pit stops used to force you out of navigation mode in Google Maps&#8212;and away from the traffic updates, turn-by-turn directions and map you rely on to stay on track.<br /><br />That changed last October with an <a href="http://google-latlong.blogspot.com/2015/10/google-maps-making-stressful-times.html">update</a> to Google Maps for Android that lets you add detours to your route, without ever leaving navigation mode. And starting today, this feature will start rolling out on iOS as well, in any country where we offer navigation&#8212;more than 100 worldwide. So no matter where you&#8217;re from, where you are, or whether you use Android or iPhone, making a pit stop is now a breeze. Here&#8217;s how it works on the iPhone:  <br /><br /><div><a href="https://4.bp.blogspot.com/-TIT1QD4i1KE/VtPhvgpJ9BI/AAAAAAAAEwY/qS_SFFLurPM/s1600/Enroute.png"><img border="0" height="363" src="https://4.bp.blogspot.com/-TIT1QD4i1KE/VtPhvgpJ9BI/AAAAAAAAEwY/qS_SFFLurPM/s640/Enroute.png" width="640"></a></div><br />When you're in navigation mode, simply tap the magnifying glass at the top right corner of the screen to see a menu of helpful options for places you might need to stop at, like gas stations, grocery stores, or restaurants. If the drop-down options aren&#8217;t what you need, you can tap the search icon or use voice commands to search by specific name or category to find what you&#8217;re looking for. Search results include ratings and the estimated amount of time the detour will add to your trip, so you can choose the one that&#8217;s best for you. <br /><br />Whether you're running an errand in your own backyard or roadtripping through a foreign land, Google Maps helps you get where you&#8217;re going, even if you have to make some stops along the way. <br /><br /><i>Posted by: Aditya Dhanrajani, Google Maps Product Manager </i>]]></description>
				<content:encoded><![CDATA[Life is full of the unexpected—things that send us scrambling for a gas station in the middle of nowhere, looking up a florist on our way home from work or searching for a restaurant as we tour the back roads of our latest vacation destination. Finding and navigating to these last-minute pit stops used to force you out of navigation mode in Google Maps—and away from the traffic updates, turn-by-turn directions and map you rely on to stay on track.<br /><br />That changed last October with an <a href="http://google-latlong.blogspot.com/2015/10/google-maps-making-stressful-times.html">update</a> to Google Maps for Android that lets you add detours to your route, without ever leaving navigation mode. And starting today, this feature will start rolling out on iOS as well, in any country where we offer navigation—more than 100 worldwide. So no matter where you’re from, where you are, or whether you use Android or iPhone, making a pit stop is now a breeze. Here’s how it works on the iPhone:  <br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-TIT1QD4i1KE/VtPhvgpJ9BI/AAAAAAAAEwY/qS_SFFLurPM/s1600/Enroute.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="363" src="https://4.bp.blogspot.com/-TIT1QD4i1KE/VtPhvgpJ9BI/AAAAAAAAEwY/qS_SFFLurPM/s640/Enroute.png" width="640" /></a></div><br />When you're in navigation mode, simply tap the magnifying glass at the top right corner of the screen to see a menu of helpful options for places you might need to stop at, like gas stations, grocery stores, or restaurants. If the drop-down options aren’t what you need, you can tap the search icon or use voice commands to search by specific name or category to find what you’re looking for. Search results include ratings and the estimated amount of time the detour will add to your trip, so you can choose the one that’s best for you. <br /><br />Whether you're running an errand in your own backyard or roadtripping through a foreign land, Google Maps helps you get where you’re going, even if you have to make some stops along the way. <br /><br /><i>Posted by: Aditya Dhanrajani, Google Maps Product Manager </i>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-earth/easily-add-pit-stops-to-your-trips-all-over-the-world-on-android-and-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
	</channel>
</rss>
