Explore seven continents with Street View on your phone

Two years ago, we added Street View to Google Maps for mobile so you could explore the world at street level right from your phone. Today, we’re happy to announce that you can see Street View imagery on all seven continents, with the addition of Brazil, Ireland and Antarctica – specifically, an area called Half Moon Island. Now, you can really explore the world from the palm of your hand.

We encourage you to go ahead and check out the beaches of Brazil, visit the moors of Ireland or see penguins in Antarctica for yourself.


To use Street View on Google Maps for your supported phone, select a place on the map and then choose the Street View option if available. With an Android-powered phone, try hopping across each continent with the new Street View smart navigation.

Car Home for Android Gets Personal

Car Home for Android turns your Android phone into a better driving companion by providing you with quick access to key applications on the go: GPS navigation, voice-activated commands, contacts, and more. Today, we’re releasing a new version of Car Home for Android (Update: currently for Nexus One and Motorola Droid, only) which makes it easier to customize Car Home to get the information you need faster.


Now, you can also quickly customize the shortcuts to personalize Car Home with one-touch access to apps and information on your phone. Just select one of the icons marked “Add shortcut” to start creating your own shortcuts. You can also drag-and-drop or remove shortcuts by long pressing any of them.


You can launch Car Home by opening the app directly from your phone or docking your phone in a car dock, and now you can automatically switch to Car Home when your phone pairs with any Bluetooth™ device. Simply select “Settings” from the Car Home screen and select which of your paired Bluetooth™ devices you want to automatically trigger Car Home.

Want to customize Car Home even more? You can now set your own wallpaper for Car Home. Just select “Settings” in Car Home and choose a wallpaper that fits your tastes. You can also customize the color of the shortcut icons to really make the Car Home experience your own.


We’ve also made it simpler for Android developers to modify their existing applications to be compatible with Car Mode. Apps which support Car Mode will show up in a “Car applications” category so they can easily be identified by you and added as a shortcut.

The new version of Car Home for Android is available for Android 2.2. You can get the update from Android Market by searching for “Car Home” in Android Market or tap here on your Android device.

Don’t forget, while your Android-powered companion can assist you while you drive, please keep your eyes on the road and drive safely at all times!

Update 10/1/10 10:28 PST: The new Car Home is available for Nexus One and Motorola Droid. Visit our Help Center to learn more or send us your feedback and questions in our Help Forum.

Posted by Markus Mühlbauer, Manager Engineering & Product, Google Automotive

Python Library for Google Analytics Management API

It’s been only 7 weeks since we’ve launched the Google Analytics Management API and we’ve heard a lot of great feedback. Thanks!

Since Python is one of our more popular languages, we’ve updated the Google Analytics Python Client Library to access all 5 feeds of the Management API. Now it’s easier than ever to get your configuration data from the API.

To show you how simple it is to use the library, here is an example which returns all the goal names for a profile:

import gdata.analytics.client

APP_NAME = 'goal_names_demo'my_client = gdata.analytics.client.AnalyticsClient(source=APP_NAME)

# Authorizemy_client.client_login(    INSERT_USER_NAME,    INSERT_PASSWORD,    APP_NAME,
    service='analytics')

# Make a query.query = gdata.analytics.client.GoalQuery(      acct_id='INSERT_ACCOUNT_ID',
     web_prop_id='INSERT_WEB_PROP_ID',      profile_id='INSERT_PROFILE_ID')

# Get and print results.results = my_client.GetManagementFeed(query)for entry in results.entry:
  print 'Goal number = %s' % entry.goal.number  print 'Goal name   = %s' % entry.goal.name
  print 'Goal value  = %s' % entry.goal.value

To get you started, we wrote a reference example which accesses all the important information for each feed. We also added links to the source and PyDoc from the Management API Libraries and Examples page. Have a look and let us know what you think!