Return to Snippet

Revision: 63438
at May 8, 2013 08:18 by koriner


Updated Code
var markerData:Array = [
{ id: -1, name: "myMarker1", title: "marker 1", info: "", location: new LatLng(-37, 144) },
{ id: -1, name: "myMarker2", title: "marker 2", info: "", location: new LatLng(-37, 145) },
{ id: -1, name: "myMarker3", title: "marker 3", info: "", location: new LatLng(-37, 146) },
{ id: -1, name: "myMarker4", title: "marker 4", info: "", location: new LatLng(-37, 147) }
];
 
for (var i:int = 0; i < markerData.length; i++)
{
    var marker:MapMarker = new MapMarker();
    marker.name = markerData[i].name;
    marker.setPosition( markerData[i].location );
    marker.title = markerData[i].title;
    marker.info = markerData[i].info;
 
    // This stores a reference in our marker data array to the 
    // ID of the marker which is returned by the addMarker() method
    markerData[i].id = NativeMaps.service.addMarker( marker );
}

Revision: 63437
at May 8, 2013 08:13 by koriner


Initial Code
var markerData:Array = [
				{ id: -1, name: "myMarker1", location: new LatLng(-37, 144) },
				{ id: -1, name: "myMarker1", location: new LatLng(-37, 145) },
				{ id: -1, name: "myMarker1", location: new LatLng(-37, 146) },
				{ id: -1, name: "myMarker1", location: new LatLng(-37, 147) }
			];
			
			for (var i:int = 0; i < markerData.length; i++)
			{
				var marker:MapMarker = new MapMarker();
				marker.name = markerData[i].name;
				marker.setPosition( markerData[i].location );
				marker.title = markerData[i].title;
				marker.info = markerData[i].info;
				
				// This stores a reference in our marker data array to the 
				// ID of the marker which is returned by the addMarker() method
				markerData[i].id = NativeMaps.service.addMarker( marker );
			}

Initial URL


Initial Description
Just a simple example script for populating a bunch of MapMarker objects on a Map using the distriqt NativeMaps ANE

Initial Title
distriqt NativeMaps AS3 API - populating multiple markers example

Initial Tags
actionscript, flash

Initial Language
ActionScript 3