4
I Use This!
Activity Not Available

News

Posted about 13 years ago by [email protected] (Simon Lopez)
Hi, do not forget to reproject the result if not explained in your favorite projection. Regards, Simon L. Le 27/02/2012 14:39, WillPetty a �crit :
Posted about 13 years ago by [email protected] (Simon Lopez)
Hi, as said in google maps terms of service : 10.1_Restrictions on How You May Use the Maps API(s)._Except as explicitly permitted in Section 8 (Licenses from Google to You) or the Maps APIs Documentation, you must not (nor may you permit anyone else to) do any of the following: 10.1.1._General Restrictions._
Posted about 13 years ago by [email protected] (♪♪♪♪♪ Maneesha ♪♪♪♪♪)
Hii, I've given it below way. But i didn't get the lat and lon. [Bindable] public var loc:Location; protected function textip_enterHandler(event:Flex Event):void { // TODO Auto-generated method stub Alert.show(""+loc.lat,""+loc.l on); <s:TextInput id="textip" text="{loc}" x="181" y="10" enter="textip_enterHandler(eve nt)"/>
Posted about 13 years ago by [email protected] (sunlw780502)
I'm not found in openscale2.0 MapEvent.ZOOM_END method, the method can replace the method is there? eg: map.addEventListener(MapEvent. ZOOM_END, repositionInfo); Best regards, Li Wen Sun
Posted about 13 years ago by [email protected] (Diego Marrero)
In my opinion, theese could be interesting subjects: - Styles, definition an use ingeneral; in particular, the use with markers - The use of GetFeatureInfo - Important concepts and examples of the different protocols: WMS, KML, etc. Regards, Diego Marrero 2012/2/21 Michael <[email protected]>
Posted about 13 years ago by [email protected] (diego)
Hi all. I need to integrate in my application some kind of drawing tool so that my users can create their own symbols (to use as markers, for example). Does anybody know of anything like that existing already, and built with Flex? TIA Diego Marrero
Posted about 13 years ago by [email protected] (Shane StClair)
This works for me (to hide controls and set to decimal degrees): var mousePos:MousePosition = new MousePosition(); mousePos.addEventListener(Flex Event.CREATION_COMPLETE, function( e:FlexEvent ):void{ var mousePos:MousePosition = e.target as MousePosition; mousePos.mousePositionCrsCombo Box.visible = false;
Posted about 13 years ago by [email protected] (Maxime Viry)
Hi, You just have to set the projection attribute of the map. <Map id="viewerMap" projection="EPSG:2176"> if you are in pure actionScript : myMap.projection="EPSG:2176" or myMap.projection = ProjProjection.getProjProjecti on( "EPSG:2176" ) Best regards, Viry Maxime
Posted about 13 years ago by [email protected] (GeoTux)
Hi, you can try with these geographic service lists: * [link] * [link] * [link] Regards, Germán 2012/2/22, Michael <[email protected]>:
Posted about 13 years ago by [email protected] (Diego Marrero)
This is what I do: <os:Map id="osMap" width="100%" height="100%" click="this.handleMapClick (event)"> </os:Map> private function handleMapClick (event:MouseEvent):void { var lPixel :Pixel = new Pixel; var lLonLat :Location;