Skip to main content

Follow Your World!

         Google now offers you a simple application that informs you by email each time we update the satellite and aerial imagery in your area of interest. Follow Your World is a free service that allows you to enter the lat/long of a location along with your email address. Whenever any imagery is updated for that location, an email alert will be sent.

         Our surroundings are constantly changing, so it's no surprise that Google Earth and Google Maps users often request the most up-to-date satellite and aerial imagery. While Google can't necessarily update the world's imagery in real-time, they can let you know when they do update this imagery.

         In just three easy steps, you can add points such as your hometown, your college, or just about any place on the Earth.

Step 1. Find a location. Search for the area by entering the name of a country, state, city, or a specific address. You can also enter the exact latitude/longitude of the location. Click Search Location to submit your search.
Step 2. Drag the map to center the cross-hairs on the exact point that you would like to mark. Click Select Point to auto-generate the correct latitude and longitude.
Step 3. Enter a location or edit the name to track this point in your dashboard. Click Submit when all the info is correct.
Step 4. You'll receive an email to confirm your subscription.

           The "Follow Your World" home page looks as seen below.


          Whether you are an armchair geospatial enthusiast or you frequently use aerial imagery from Google Earth or Google Maps in your work, give this new application from Google a try!

          Enjoy your experience with Follow Your World!

Comments

Post a Comment

Please leave your comments here...

Recommended for You

Retriving co-ordinates...

         We have seen 2 Google Maps API v3 examples wherein we have retrieved the latitude-longitude co-ordinates of the point of click on the map. In the first example we have displayed the co-ordinates in the information window and in the second , we have displayed the co-ordinates in a form in the information window.         Today we will create a code to retrieve the latitude longitude co-ordinates in a text box while simultaneously a marker appears on the map as well. So, here goes the code. <html> <head> <title> Google Maps API v3 - Adding marker on Click and retrieving the co-ordinates in a text box </title> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> var map;    //When using event as a parameter to a function declare map, strictly as a global variable fun...

ES6 101 - Class

Spatial Unlimited changes to The UI Dev After being hosted on blogger 😣 for the last 6 years 📆, this page has finally been moved to Github.io This means a few things for you, dear reader! You will be redirected to the new page shortly! ⏩ ⏩ ⏩ Once crapy HTML is now better looking Markdown ! 😍 😍 The entire blog is a Github repo ! 😍 😍 Spatial Unlimited is now The UI Dev 😍 😍

Jquery Mobile Form - Flip toggle switch control

    A binary flip switch is a very common UI element in the mobile web world and was made popular by our very own iOS. This flip switch is used mostly for binary on/off or true/false data inputs. To create a flip switch or a toggle switch, start with a select with data-attribute="slider" and two options. Jquery Mobile would style this select as a regular flip switch with capsule corners and a a circular handle which can be either dragged from one end to the other or tap either sides of the switch.     The flip toggle switch is available in 2 flavors/sizes - regular and mini. Adding a data attribute data-mini="true" to the input tag renders a smaller sized flip switch. Let's take a look at the code sample below to understand the working in a better way.     In the code above, you will see 4 different implementations of the flip switch. The first one is a regular flip switch with the label and the toggle button one below the other. The se...

The dancing bubble...

         "Why does this bubble not dance?" asked my friend's 6 year old sister referring to a marker she was seeing on the map! So I decided the this marker needs to be animated! So, I developed the following code which shows a marker that bounces on its position and can also be dragged anywhere on the map!         The following is the code for the "dancing marker"... <html> <head> <title>Google Maps JavaScript API v3 - Bouncing marker</title> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> var marker; var map; function initialize() {     map = new google.maps.Map(document.getElementById("map"),     {         zoom: 5,               mapTypeId: google.maps.MapTypeId....

Weather Layer now available with Google Maps API

    Yes! We now have the Google's Weather Layer available to use with the Google Maps API v3. The weather layer was released on Google Maps website in August 2011with cloud imagery from the U.S. Naval Research Lab and weather forecast information from weather.com . Since then developers across the globe have been waiting for this layer to be released for use with the Maps API. You can find about the weather layer on the Google Maps in the post I wrote in August last year.     This weather layer has now been made available for use with the maps API through the weather library which basically consists of two classes: 'WeatherLayer' and 'CloudLayer'. The 'WeatherLayer' class displays the current weather conditions at various locations, as well as a forecast for the next four days when a user clicks on the icon at that particular location. The units for temperature (degrees Celsius and Fahrenheit) and wind speed (km/hr, miles/hr, m/sec) can also be config...