Book Image

Learning Bing Maps API

By : Artan Sinani
Book Image

Learning Bing Maps API

By: Artan Sinani

Overview of this book

Provided as a part of Microsoft's Bing suite of search engines, Bing Maps is a web mapping service powered by the Bing Maps for Enterprise framework. The need for geospatial data has increased dramatically in the last few years. Adding a mapping context to any location-based data is becoming more and more common, and businesses are embracing it to improve their user experience with new data richness. Comprising of simple, follow-along examples, Learning Bing Maps API will show you how to use the many features of Bing Maps, from dropping a simple map on a web page, to fetching geospatial data from the Microsoft servers. Through the course of this book you will build a solid foundation for creating your own geo-applications.Following the hands-on recipes of this book, you will build a different web app in each chapter as you communicate with different APIs provided by Bing Maps. You will build your own library of JavaScript modules that talk to the Microsoft Maps API.You will create a custom theme for the map, with your own controls. Taking advantage of the global reach of Bing Maps, you will learn how to build a route scheduler for a delivery company in Madrid, Spain, and then you will discover how to create jobs on the Bing Maps servers for geocoding addresses in California, USA. By the end of the book you will have learned everything you need to know to embed a map on a web page, with your own geo-data, or data obtained by the Bing Map Services.
Table of Contents (14 chapters)

Custom events


Our tool will enable the users to draw custom polylines on the map, but we don't want this activity to interfere with other tasks performed on the map, such as dragging, clicking, and so on. Therefore, we need to add a button so that, when clicked, can allow the users to draw a shape on the map.

Respecting our modular system, we will give the power to add buttons to our LearningTheme module, which generates the header holding the buttons. And we will use custom events to do that.

The AJAX Control provides a simple, but a powerful Events object, which among others exposes two static methods: addHandler and invoke. The former method attaches a function to the map (and as we will see later in this book, also to polygons, pins, and other map entities) when an event, specified by an event name, is triggered. The invoke function triggers the event specified by the event name, with some optional data objects. The event names are usually click, dblclick, keypress, and so on, but in fact...