Bing Maps in Hotmail

Bing Maps in Hotmail

Get Bing Maps for your locations in hotmail.

Bing Maps in Hotmail

Hotmail users can embedd Bing Maps into emails for showing locations and linking to directions in the main Bing Maps Website.

When users create a new email message the option ‘From Bing’ is displayed and contains

  • Images
  • Clip Art
  • Videos
  • Maps & Places
  • Webpages

Using the Maps & Places creates a side bar (see image above)
You can add new locations (and save them for later)
Then just use the insert to add the embedded map to your email.
Internet connection is required for displaying the map.

source
http://johanneskebeck.spaces.live.com/Blog/cns!42E1F70205EC8A96!12589.entry

Using My Maps for your summer sublet

[Cross-posted from the Google Student Blog]


Today’s guest author is Katie Corner, an Electrical and Computer Engineering student at University of Colorado, Boulder and a Google Student Ambassador. Check out more tips from students on the Google Student Blog, or submit your own to share.

The spring semester ends, and the frenzy begins: Quick, everyone find someone to sublet your apartment for the summer!

Hundreds of students in your university town will be simultaneously advertising their apartments to potential summer subletters. How can you help your apartment stand out among the crowd? Bring in Google Maps to save the day. Google Maps has a feature known as My Maps, which enables you to quickly and easily build a personalized map highlighting the locations you care about — all on one map! Simply share the map link with your family or friends to let them see it too.

Everyone knows that when looking for a summer sublet, it’s all about location, location, location. Where are the closest grocery stores? What’s fun to do nearby? There’s a running path along the creek just two blocks away? And the local bus picks up on the corner? Nothing sells these points better than an easy, personalized map.

It only takes minutes to create your own My Map. To start, sign in to your Google account and go to maps.google.com. Click on the link in the upper-left corner labeled “My Maps.” By clicking the “Create new map” link, you can pick a title and get to building your housing map.

To start finding locations of interest and placing them on your new My Map, search for those places in Google Maps, for example “park in boulder co.” After finding the location you are interested in, simply click on the red pin on the map, followed by the “Save to…” link. From here you can easily select the new My Map you created.

After adding a number of specific locations to your map, you can also customize and edit the map to fit your style preferences. To access your map thus far, click on the “My Maps” link in the top left corner of the page, and select the map you are interested in editing. By clicking the “Edit” button, you are now in editing mode on the map and can easily make changes to the names of locations or the style of icon. To make a change to a specific place, just click on that location. On the map, an editable box appears where you can easily make changes, such adding as some notes about the place.

The end product is a unique map showcasing why your sublet is the right option to pick. Here’s an example I used for an apartment in Boulder, Colorado.

Stand out in your next apartment rental posting with My Maps today!

New Free-Busy feed for the Google Calendar API

There is now a convenient way to query free-busy information from Google Calendar. The new Google Calendar free-busy feed allows you to query blocks of busy time for one or multiple users, or for all the users subscribed to a Google Group in a single request.

This new Google Data feed is accessible through the URL pattern
https://www.google.com/calendar/feeds/default/freebusy/busy-times/userID
where “userID” is the email of the calendar you’d like to request the free-busy information of. The response will be an entry containing temporal blocks indicating the periods when the user is marked as busy in their Google Calendar. Visit our Developer’s Guide for more details and code samples about the free-busy feed.

You can also query free-busy information for multiple users in a single query using a batch request. The URL to use for such a batch request is:
https://www.google.com/calendar/feeds/default/freebusy/busy-times/batch

Below is a sample batch request, requesting free-busy information for Liz, Bob and Luke:

          http://www.google.com/calendar/feeds/default/freebusy/busy-times/liz%40example.com        http://www.google.com/calendar/feeds/default/freebusy/busy-times/bob%40example.com        http://www.google.com/calendar/feeds/default/freebusy/busy-times/luke%40example.com

This allows you, for example, to find common free time between multiple users in one single request to the Google Calendar API, which was not possible with previously existing feeds.

For example, the response from the batch request above would look like:

  https://www.google.com/calendar/feeds/default/freebusy/batch/1234  2010-03-13T00:00:00.000Z  

      http://www.google.com/calendar/feeds/default/freebusy/liz%40example.com     … updated, category, self link, author and batch info ...                                                  http://www.google.com/calendar/feeds/default/freebusy/bob%40example.com    … Free-busy entry content for Bob ...        http://www.google.com/calendar/feeds/default/freebusy/luke%40example.com    … Free-busy entry content for Luke ...

The response contains an entry for each requested calendar’s free-busy feed. Each of these entries contains blocks of time where the user is marked as busy in his Calendar for the next 24 hours.

Google Apps for Business domain users are also able to query free-busy information for all the members of a given Google Group in a single request. This feature is available through the following URL pattern:
https://www.google.com/calendar/feeds/default/freebusy/group/groupID/busy-times Where “groupID” is the email of the Google Group.

The response will be a feed containing the free-busy entries of each member of the group. To learn more about querying free-busy for groups please visit our Developer’s Guide.