Skip to main content

Fun with GPS!

            There seems to be a plethora of games and alternatives emerging to take advantage of the affordability of handheld GPS units. In a previous article on my blog, the high-tech treasure hunting game of Geocaching was discussed. Learn about more ways to use the surface of the earth as your gameboard. This article will provide an overview on two more GPS-based ideas: Geodashing and GPS Drawing.

Geodashing:

            Geodashing is a game in which players use GPS receivers on a playing field that covers the entire planet. The waypoints, or dashpoints, to be reached are randomly selected. The win goes to the one who can get to the most dashpoints; i.e. if you can get to them at all! Each game has a new set of dashpoints making each game completely different and unpredictable. Click to know more of this interesting game...

GPS Drawing:

            The GPS Drawing Project seeks to display GPS-based artistry created by navigating through a landscape with a GPS unit. The resulting linear trail collected by the GPS Data Logger creates the resulting art. There is a gallery of the GPS art that the user can browse through. Each entry contains an interactive shockwave called “GPS-o-shockwave” of the GPS route as well as a description of the area the artist navigated. Accompanying the GPS drawing is an aerial of the area navigated with the route overlaid. The art isn’t just restricted to land, but can include drawings obtained by sea and by air. The submittal of GPS art is open to anyone. ASCII files of the GPS points are also welcome. There is also a shockwave application where you can copy and paste your GPS data points to see what your GPS-based art looks like. Click to know more of this artistic GPS game...

            Do drop in your comments about what you think about this article and these innovative GPS based games! Also share your experiences, if you have ever tried doing such a thing! Happy GPS gaming!

Comments

Recommended for You

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 😍 😍

CSS - Counter-increment and counter-reset

Today we will take a look at a couple of CSS properties that are usually used together but not very frequently used. We will be talking about the counter-increment and counter-reset properties. As the name suggests counter-increment and counter-reset definitely have something to do with counters. Let's take a look at the example below which will clearly illustrate the usage of these 2 properties. The implementation is very clear and straight-forward. The only question that remains now, can these CSS properties replace the ordered list (ol-li) HTML code? Do let me know your comments and feedback. Would you use these CSS properties against the standard ol-li structure?

Side-scrolling web pages issue with Jquery Mobile - Issue #5748

    While developing a Jquery mobile based application, I came across a issue that is observed only on the iOS 6 devices and Android 4.2.2 devices.     What is the issue?         Web pages are side scrolling on iOS6 and Android 4.2.2 devices.     How did I debug the issue?         This bug was in our applications bug tracker for a long time and since I am the lone front-end developer the project that I am working on, my manger was pushing me to close this bug quickly. I had used the perfect mobile meta tag and still the web pages were side-scrolling. None of my divs had width that was going beyond the device widths and still there was this issue. That day, I decided to break down my HTML to pieces, and tested each piece on the dreadful iOS 6 device. I came down to a textbox that had some placeholder text in it and there it was, the issue was glaring me in my face. ...

Jquery Mobile Form - Search input

    Input field of type search is newly introduced in HTML5 and is very well styled. The style is further enhanced when using the Jquery Mobile framework and we will see how this can be done in today's post. Jquery Mobile styles the search input type with capsule-corners and adds a 'x' icon to the right end, which clears the text in the search box.      The seacrch input elements are available in 2 flavors/sizes - regular and mini.   Adding a data attribute data-mini="true" to the input tag renders a smaller sized input element. 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 input search element. The first one is a regular input of type search with the label and the searchbox one below the other. The second implementation is exactly similar to the first implementation with the only difference of the added data attrib...

Fusion Table Layer...

    Today we will have a look at the "Fusion Table" Layer example. But before we start with the actual code, we will have a look at what Fusion Table is. Google Fusion Table is a free service for sharing and visualizing data online. It allows you to share data, merge data from multiple tables into interesting derived tables, and see the most up-to-date data from all sources. There is a lot of documentation about Google Fusion Table available on the web. You can visit their home page or the Google Research Blog to gather more information about Fusion Tables.     Let us have a look at the following code. The code is very short and simple to understand!     The few things to look out for in the above code are: The manner in which mapTypeId has been specified! In other Google Maps API v3 examples, we have seen that we specify mapTypeID as ROADMAP, SATELLITE, etc. i.e., all the letters are in uppercase and not in quotes! However, in this...