Im trying to add the three buttons to select " HYBRID, MAP, SATELLITE
" on my map..
Here is what i hav so far..
import com.google.maps.Map;
import com.google.maps.LatLng;
import com.google.maps.MapEvent;
import com.google.maps.MapType;
import com.google.maps.controls.MapTypeControl;
import com.google.maps.controls.ZoomControl;
import com.google.maps.controls.PositionControl;
var map:Map = new Map();
map.key =
"ABQIAAAALL3U5nZb2Kxn_u3L_pniBhQ3rV7oDkq_b3vpyq6tp4CquZubFRR3k3rlIQcFLkGgR2NRjnIuQ0lwyA";
map.setSize(new Point(1500, 2350 ));
map.addEventListener(MapEvent.MAP_READY, onMapReady);
this.addChild(map);
//function onMapReady(event:Event):void {
//map.setCenter(new LatLng(27.52776,-107.31445), 5,
MapType.HYBRID_MAP_TYPE); }
function onMapReady(event:MapEvent):void {
map.setCenter(new LatLng(42.366662,-71.106262), 11,
MapType.NORMAL_MAP_TYPE);
map.addControl(new ZoomControl());
map.addControl(new PositionControl());
map.addControl(new MapTypeControl());
map.enableScrollWheelZoom();
map.enableContinuousZoom();
}
I really want to get into writing AS3 to control the Google API...
what are the advantages of Flex???
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API For Flash" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-maps-api-for-flash?hl=en
-~----------~----~----~----~------~----~------~--~---