Mobile search- Mo-mentum

Mobile search helps people find what they need in a snap. Whether they’re choosing between two restaurants, shopping for a new watch, or buying a movie ticket, people make better decisions when they have access to more information. Search ads are information—answers—and on mobile devices, they’re able to connect people and businesses in new, useful and relevant ways.

Today, we’re unveiling new mobile search ad formats and some new details about the ways many different businesses are benefiting from mobile advertising.

Search ads, meet mobile apps

We’re bringing the worlds of search and apps together with mobile advertising in a few ways:

  • Search ads in mobile apps: Lots of mobile apps give people the ability to search for information—like an app that lets you search for a restaurant nearby. Today we’re announcing Custom Search Ads for these apps. These ads provide useful and relevant answers, for people searching within a mobile app. Custom Search Ads will also help app developers earn more money to fund their apps and grow their businesses on mobile.

    Custom Search Ads in mobile apps

  • Click to Download: Not surprisingly, many people use Google to search for information about mobile apps. This ad format helps consumers right when they’re searching for information about an app, linking them directly to the App Store or Android Marketplace to download. We’ve recently enabled app developers to include app icons and information about the app in their ad unit so that people can make more informed decisions about whether they want to download the app.
  • Mobile App Extensions: This new, beta ad unit enables businesses to use mobile search ads to direct someone to a page within a mobile app already installed on their phone. For example, if someone searches for sneakers on a mobile device, they might see an ad that takes them directly into a cool shopping app they’ve installed on their phone.

Local search ads—so hot right now

Building local context into mobile ads makes them more useful both for both consumers and businesses. Here are a few specific examples:

  • Click to Call: We introduced these ads for high-end smartphones less than two years ago and they’re now driving millions of calls per week to hundreds of thousands of businesses around the world. Click to call ads have been very effective in generating leads for businesses of all sizes, across many verticals—more people can call an Enterprise Rent-A-Car near them for rentals and more potential customers can connect with ADT Security for alarm system expertise, for example.
  • Hyperlocal search ads: Launched a year ago, these search ads contain useful local information like phone numbers, driving directions, a number to click and call a business directly, and also show people how far they are from specific business locations. Roy’s Restaurants’ efforts with this format led to a 40 percent increase in call volume—and lots more full tables!
  • Proximity as a factor in mobile search ads ranking: The distance between a person and an advertiser’s business location is now a factor in mobile search ads ranking. This means an ad for a business with a physical location close to to a consumer may perform better in AdWords—driving more mobile traffic at a lower cost. The feature will be effective only when consumers opt in to share their device location for mobile searches. It will make our hyperlocal format more useful for businesses and users—advertisers can get started with this by creating Location Extensions for their mobile campaigns. Particularly this holiday season, when consumers are using their mobile phones to find a nearby store for last minute gift purchases, this new feature will help connect customers with storefronts.
  • Circulars: We began testing this new ad format with Best Buy and Macy’s earlier this month. When someone clicks on a search or display ad (on desktop, mobile or tablet devices), they may see these engaging ads which contain photos of relevant products and special offers. With a few simple clicks, people who are at their desk can email that circular to their mobile phones, and later walk into their local store, flash their phone and redeem the offers.
Macy’s Circular ads on mobile

The exciting thing for mobile users and businesses is that the possibilities for mobile search advertising are nearly endless. We’re looking forward to helping businesses and consumers alike take advantage of this brave new (mobile) world.

Cancun Map – Google Map of Cancun

This super detailed Cancun Map Displays Hotels, Restaurants, Nightclubs, Markets, Beaches, and much more using the tools provided by Google API Satellite Maps. Besides the incredible ZOOM, It has an amazing Interactive menu that lets you choose what should be display on the Cancun map and it also has the Virtual Tours of all Cancun hotels, malls, public areas and beaches.

Search your geo data using spatial queries from Fusion Tables!

I’m Kathryn Hurley, a Developer Programs Engineer for Fusion Tables, and I have to say, I really dig Fusion Tables. The power it gives you to visualize your data is amazing! Plus, the team is working hard to add new features that give even more power to you, the developer.

It is my pleasure to announce that Fusion Tables now offers spatial queries! Using spatial queries, developers can (1) find all features that are located within (or overlap with) a given distance from a location (2) find all features that are located within (or overlap with) a given bounding box, and (3) find a given number of features closest to a location.

To demonstrate some of the new syntax, let’s go through a potential use case of spatial queries: creating a store locator map. For this demo, I set up a table in Fusion Tables, 297050, containing the locations of a fictitious pizza restaurant chain in the San Francisco bay area. The table contains the name, location, and whether or not that location delivers.

Now let’s say we want to display all the restaurants that fall within a bounding box. To do so, use the syntax:

SELECT * FROM 297050 WHERE ST_INTERSECTS(Address, RECTANGLE(LATLNG(37.2, -122.3), LATLNG(37.6, -121.9)))

The map to the left shows this query in action using the FusionTablesLayer. The example shows all rows in the pizza table that fall within the bounding box specified with a lower-left coordinate of 37.2, -122.3 and a upper-right coordinate of 37.6, -121.9.

This is the code for the FusionTablesLayer:

map = new google.maps.Map(document.getElementById('map_canvas'), {
   center: new google.maps.LatLng(37.4, -122.1),
   zoom: 10,
   mapTypeId: google.maps.MapTypeId.ROADMAP
});
tableid = 297050;
layer = new google.maps.FusionTablesLayer(tableid, {
   query: "SELECT Address FROM " + tableid + " WHERE ST_INTERSECTS(Address, RECTANGLE(LATLNG(37.3, -122.3), LATLNG(37.6, -121.9)))",
   map: map   
});

We can also find the 10 features closest to a particular coordinate, such as the latitude, longitude coordinate of your house or a major city center. To find the 10 nearest features to Mountain View, CA at coordinate 37.4,-122.1., we use the syntax:

SELECT * FROM 297050 ORDER BY ST_DISTANCE(Address, LATLNG(37.4, -122.1)) LIMIT 10

These 2 examples demonstrate how to create a store locator-like map, but the possibilities are endless! You could create an application that finds the most popular bike trail routes in your area or enable crowd sourcing to identify roads that might need more street lamps.

To learn more about the full spatial query offering in Fusion Tables, please see the Fusion Tables documentation. You can also join the Fusion Tables User Group to receive announcements about new features or post questions you might have about Fusion Tables. Or follow us on Twitter: @GoogleFT. And, most importantly, have fun creating awesome apps!

Posted by Kathryn Hurley, Google Geo Developer Relations