The clients at home and abroad strive to buy our 70-544 test materials because they think our products are the best study materials which are designed for preparing the test Microsoft certification. They trust our 70-544 certification guide deeply not only because the high quality and passing rate of our TS: Ms Virtual Earth 6.0, Application Development qualification test guide but also because our considerate service system. They treat our 70-544 study materials as the magic weapon to get the Microsoft certificate and the meritorious statesman to increase their wages and be promoted. You may be not quite familiar with our 70-544 test materials and we provide the detailed explanation of our 70-544 certification guide as follow for you have an understanding before you decide to buy.
Any electronic equipment available on the APP online version
Our 70-544 test materials boost three versions and they include the PDF version, PC version and the APP online version. The clients can use any electronic equipment on it. If only the users' equipment can link with the internet they can use their equipment to learn our TS: Ms Virtual Earth 6.0, Application Development qualification test guide. They can use their cellphones, laptops and tablet computers to learn our 70-544 study materials. The great advantage of the APP online version is if only the clients use our 70-544 certification guide in the environment with the internet for the first time on any electronic equipment they can use our 70-544 test materials offline later. So the clients can carry about their electronic equipment available on their hands and when they want to use them to learn our TS: Ms Virtual Earth 6.0, Application Development qualification test guide they can take them out at any time and learn offline. So the clients can break through the limits of the time, equipment, place and environment and learn our 70-544 certification guide at their own wills. This is an outstanding merit of the APP online version.
Self-learning and self-evaluation functions
Our TS: Ms Virtual Earth 6.0, Application Development qualification test guide boosts the self-learning and self-evaluation functions so as to let the clients understand their learning results and learning process, then find the weak links to improve them. Through the self-learning function the learners can choose the learning methods by themselves and choose the contents which they think are important. Through the self-evaluation function the learners can evaluate their mastery degree of our 70-544 test materials and their learning process. The two functions can help the learners adjust their learning arrangements and schedules to efficiently prepare the exam. The clients can record their self-learning summary and results into our software and evaluate their learning process, mastery degrees and learning results in our software. According their learning conditions of our 70-544 certification guide they can change their learning methods and styles.
Simple language
The language of our TS: Ms Virtual Earth 6.0, Application Development qualification test guide is simple. The learners may come from many social positions and their abilities to master our 70-544 test materials are varied. Based on this consideration we apply the most simple and easy-to-be-understood language to help the learners no matter he or she is the students or the in-service staff, the novice or the experienced employee which have worked for many years. 70-544 certification guide use the simple language to explain the answers and detailed knowledge points and the concise words to show the complicated information about the 70-544 test materials. The language is also refined to simplify the large amount of information. So the learners have no obstacles to learn our 70-544 certification guide.
Microsoft 70-544 Exam Syllabus Topics:
| Section | Objectives |
|---|---|
| Topic 1: Geocoding and Location Services | - Working with spatial data services - Address geocoding and reverse geocoding |
| Topic 2: Working with Microsoft Virtual Earth Platform | - Understanding Virtual Earth architecture and components - Configuring and embedding the map control in applications |
| Topic 3: Working with Data Layers and Overlays | - Custom overlays and layer management - Adding and managing pushpins and shapes |
| Topic 4: Map Display and User Interaction | - Handling user input and map events - Map views, zoom levels, and navigation controls |
| Topic 5: Application Development and Integration | - Integrating Virtual Earth services into solutions - Building web-based mapping applications |
Microsoft TS: Ms Virtual Earth 6.0, Application Development Sample Questions:
You need to add a default pushpin as a shape to the base map layer at a specific latitude and longitude. Which code segment should you use?
- A. var shape = new VEShape(VEShapeType.Pushpin, map.GetCenter()); shape.SetTitle('My pushpin'); shape.SetDescription('This is a default shape'); map.AddShape(shape);
- B. var shapeLayer = new VEShapeLayer(); map.AddShapeLayer(shapeLayer); var shape = new VEShape(VEShapeType.Pushpin, new VELatLong(latitude,longitude)); shape.SetTitle('My pushpin'); shape.SetDescription('This is a default shape'); shapeLayer.AddShape(shape);
- C. var shape = map.AddPushpin(map.GetCenter()); shape.SetTitle('My pushpin'); shape.SetDescription('This is a default shape');
- D. var shape = new VEShape(VEShapeType.Pushpin, new VELatLong(0,0)); shape.SetTitle('My pushpin'); shape.SetDescription('This is a default shape'); shape.SetPoints([new VELatLong(latitude,longitude)]); map.AddShape(shape);
Correct Answer: D 🗳️
A Web site displays a Virtual Earth 6.0 map in two-dimensional mode. You need to display data legends on the Virtual Earth map by using a custom control. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
- A. Add the data legends to the HTML element. Call the VEMap.AddControl method.
- B. In the style property for the IFRAME element, set the value of the z-index attribute to 1 and the position settings to match those of your control. In the style property for your custom control, set the value of the z-index attribute to a number greater than 1.
- C. Use the document.CreateElement method of the Document Object Model (DOM) to create a new HTML element.
- D. Loop through the Document Object Model (DOM) of your application. Insert the data legend as a child of the DIV element that contains the Virtual Earth map.
- E. Create an IFRAME element that has the same size and the same location as the custom control. Set the value of the frameborder property of the IFRAME element to 0 and the value of the scrolling property to no.
Correct Answer: A,C 🗳️
A Virtual Earth 6.0 application loads locations from a local Microsoft SQL Server 2005 database. You update locations in the database manually. You plan to automate the manual process. You need to ensure that the automation process updates the maximum number of locations in the least amount of time. What should you do?
- A. Push all locations to Customer Data Services by using the BatchGeocodeSpecification class, and retrieve the results.
- B. Push all locations to Customer Data Services by using the UploadSpecification class, and retrieve the results.
- C. Call the Find method for each location by using Microsoft MapPoint Web Service.
- D. Call the FindAddress method for each location by using Microsoft MapPoint Web
Service.
Correct Answer: A 🗳️
You create a Microsoft MapPoint Web Service application that accepts routes from users.
You need to find points of interest that are within one mile of a route or within three miles of the endpoints of the route. What are two possible ways to achieve the goal? (Each correct answer presents a complete solution. Choose two.)
- A. findNearRouteSpec.Distance = 1; findResults =
findService.FindNearRoute(findNearRouteSpec); foundLocations.Add(findResults); findNearbySpec.Distance = 3; foreach (Segment segment in route.Itinerary.Segments) { foreach (Direction direction in segment.Directions) { findNearbySpec.LatLong = direction.LatLong; findResults = findService.FindNearby(findNearbySpec); foundLocations.Add(findResults); } } - B. findNearRouteSpec.Distance = 1; findResults =
findService.FindNearRoute(findNearRouteSpec); foundLocations.Add(findResults); findNearbySpec.Distance = 3; foreach (FindResult findResult in findResults.Results) { findNearbySpec.LatLong = findResult.FoundLocation.LatLong; findResults = findService.FindNearby(findNearbySpec); foundLocations.Add(findResults); } - C. findNearRouteSpec.Distance = 1; findResults =
findService.FindNearRoute(findNearRouteSpec); foundLocations.Add(findResults); findNearbySpec.Distance = 3; foreach (Segment segment in route.Itinerary.Segments) { findNearbySpec.LatLong = segment.Waypoint.Location.LatLong; findResults = findService.FindNearby(findNearbySpec); foundLocations.Add(findResults); } - D. findNearRouteSpec.Distance = 1; findResults =
findService.FindNearRoute(findNearRouteSpec); foundLocations.Add(findResults); findNearbySpec.Distance = 3; findNearbySpec.LatLong = startLatLong; findResults = findService.FindNearby(findNearbySpec); foundLocations.Add(findResults); findNearbySpec.LatLong = endLatLong; findResults =
findService.FindNearby(findNearbySpec); foundLocations.Add(findResults);
Correct Answer: C,D 🗳️
The branch office locations of your company are saved and shared in a portal data store by using the Live Search Maps portal. The company wants to display the locations on a Virtual
Earth 6.0 map. You need to add the saved data as a new layer on the Virtual Earth map.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)
- A. Extract the GUID from a Live Search Maps Collection reference.
- B. Access the data by using the URL for the Live Search Maps Collection object.
- C. Import the data as GeoRSS to a new layer.
- D. Import the data as VECollection to a new layer.
Correct Answer: A,D 🗳️








