Re: MapWidget.removeControl() not working?

2009-10-08 Thread lumo
noone got an idea about that? do i have to call an update function afterwards? 2009/10/6 lumo lumo2...@gmail.com Hi NG! i add controls to my map on startup, but i want to enable the user to remove it again on runtime (toggle) so i init my map like this: private static MapTypeControl

MapWidget.removeControl() not working?

2009-10-06 Thread lumo
Hi NG! i add controls to my map on startup, but i want to enable the user to remove it again on runtime (toggle) so i init my map like this: private static MapTypeControl mapTypeControl = new MapTypeControl(); private static ScaleControl scaleControl = new ScaleControl(); public void

Re: decide zoom level from multiple points

2009-08-10 Thread lumo
of using it: http://www.allhotelmotel.com For GWT, you can reference bestFitWithCenter method and apply to your GWT module. I used it for my client new site, in hotel search result page map view tab. http://www.holidayinn.com/hotels/us/en/reservation On Aug 10, 1:59 am, lumo lumo2

decide zoom level from multiple points

2009-08-09 Thread lumo
need? is there a special sense behind the levels? i found an article about the scale of the levels, but i am not sure if this is correct... http://laudontech.com/GISBlog/?p=28 would be great if someone can bring light into this (for me) thanks a lot in advance lumo

Re: maps with TileLayer

2009-08-07 Thread lumo
thats exactly what i was searching for! one more question to this... how can i add maptype G_PHYSICAL_MAP G_SATELLITE_3D_MAP as shown in many javascripts i saw map.addMapType(G_PHYSICAL_MAP); map.addMapType(G_SATELLITE_3D_MAP); is it also possible to do this in gwt / java? because by default i

Re: maps with TileLayer

2009-08-07 Thread lumo
i found how to add the G_PHYSICAL_MAP mapWidget.addMapType(MapType.getPhysicalMap()); still open: G_SATELLITE_3D_MAP --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-07 Thread lumo
hello NG, i updated my ide and gwt and moved my project to the new ide. now i can still compile the project after fixing some errors. but when i come to execution i get the following error: Project XXX is not GWT project ?? i can build the map but its no gwt project?

Re: StaticStringInternationalization

2009-08-07 Thread lumo
horray! you pointed me to my mistake! i added the locale stuff to the .html instead of the .gwt.xml after sorting this out i get way more files compiled (due different languages :) ) thanks a lot! --~--~-~--~~~---~--~~ You received this message because you are

Re: update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-07 Thread lumo
2009/8/7 Miguel Méndez mmen...@google.com It would help to know what plugins you have installed or are trying to use. i do not have loads of plugins installed: Instantiations Designer Hibernate Google GWT, GDT in this projects i do only use gwt (and hibernate) PS: funny part is in eclipse

Re: update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-07 Thread lumo
i got my Map.java open, when i click run as - Compile GWT Application it starts to compile the map; when i click run as - GWT Application it pops up a window where i can edit configuration and launch, underneath this it says project Map is not GWT project.

Re: update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-07 Thread lumo
The Google Plugin for Eclipse does not support run as - GWT Application. It supports run as - Web Application. Is that what you meant? aye caramba; well two points 1) yes, it works if i click run as - web application 2) you say it does not support it, but its available and enabled...? (i can

Re: update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-07 Thread lumo
you can find the screenshot at: http://www.biooffice.at/biomap/proof.png greets --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-07 Thread lumo
the Instantiations plugin does not support any Run As features, it creates a UI and generates Java native code, nothing else. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-07 Thread lumo
probably from com.google.appengine.eclipse.core_1.1.0.v200907291526.jar ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-07 Thread lumo
hmm ok. i'm off for weekend - check back on monday! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe

Re: update to Eclipse 3.5 and GWT 1.7 - problem

2009-08-07 Thread lumo
eh?! i'm using it now for more than half a year and never saw that Run As! GWT != GWT :) shame on me - sorry for the hassle! 2009/8/7 Isaac Truett itru...@gmail.com the Instantiations plugin does not support any Run As features

maps with TileLayer

2009-08-06 Thread lumo
how can i add a custom maptype to my map? a friend of mine is writing his map by hand (all js) i'm coding it in gwt and therefore i do not want to inject custom js code. i can look up his code and came to a point where my ide tells me that a type cant be instantiated. so what i am doing is...

StaticStringInternationalization

2009-08-06 Thread lumo
: if i use äüö in german #246; wrong chars are shown (utf-8) i tried to add meta http-equiv=content-type content=text/html; charset=iso-8859-1 and meta http-equiv=content-type content=text/html; charset=UTF-8 to my module.html which ended both times with the same result... thanks in advance lumo PS: i

Re: StaticStringInternationalization

2009-08-06 Thread lumo
* use this content type in the HTML page: meta http-equiv=content-type content=text/html; charset=UTF-8 * make sure, your .properties files are saved using UTF-8 encoding (file-properties in eclipse) * set the language using: meta name='gwt:property' content='locale=de' okay, i

RequestBuilder + Response + Mapwidget + Marker

2009-07-23 Thread lumo
Hello NG! I'm stuck on a ajax query. i use a mapwidget and a marker. when i click on the marker(i extended marker and call it BioMarker, but functions of super, are still supported) i open a infowindow. while opening the window i am querying a php script and load some data. this data needs to be

RequestBuilder, Response, Mapwidget, Marker

2009-07-23 Thread lumo
Hello NG! I'm stuck on a ajax query. i use a mapwidget and a marker. when i click on the marker(i extended marker and call it BioMarker, but functions of super, are still supported) i open a infowindow. while opening the window i am querying a php script and load some data. this data needs to be

Re: InfoWindowContent JavaScript Browsers

2009-07-22 Thread lumo
ok, so i try to convert the custom html and js code to gwt code... note: i already got a way to get the data from topoGetAltitude() instead from js via a request like a form submit (php-java communication is already implemented!) i am courious if this will work in combination with gwt... ill try

Re: Google Maps, user could add their markers.

2009-07-22 Thread lumo
create a new mar 2009/7/22 pennfoli0 pennfo...@gmail.com Hi, can this be possible that users could also add their own marker, for example in this site http://gmaps-samples.googlecode.com/svn/trunk/manymarkers/markerhash.html they could also insert their own marker and also insert their

Re: Google Maps, user could add their markers.

2009-07-22 Thread lumo
(i love it when my browser gets crazy...) create a new marker when the onclick-event is fired and add some textboxes so the user cann fill data? or create a form where users cam specify their informations and use this form to create a new marker... 2009/7/23 lumo lumo2...@gmail.com create a new

InfoWindowContent JavaScript Browsers

2009-07-21 Thread lumo
.api/main.js == which is gmaps api - probably this stops the scripts from working - afaik ie stops executing JS after an error... hope someone can solve this with me. thanks in advance lumo

Re: InfoWindowContent JavaScript Browsers

2009-07-21 Thread lumo
comilation log is ok (although i still does not know how to change the compiler...): WARNING: 'com.google.gwt.dev.GWTCompiler' is deprecated and will be removed in a future release. Use 'com.google.gwt.dev.Compiler' instead. (To disable this warning, pass -Dgwt.nowarn.legacy.tools as a JVM arg.)

Re: UnsatisfiedLinkError

2009-07-17 Thread lumo
right click on the project - properties - google - web toolkit yes, there i selected use google web toolkit with specific sdk gwt 1.7.0 - but... no clue how to change from gwtcompiler to compiler, to switch from deprecated to actual compiler --~--~-~--~~~---~--~~

Including a remote javascript?

2009-07-17 Thread lumo
? thanks in advance lumo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group, send email

Re: UnsatisfiedLinkError

2009-07-17 Thread lumo
2009/7/17 Eric Ayers zun...@google.com Something is amiss with your Eclipse config. It sounds to me like you are running your program as an 'Application' in the launch config (as if this were a plain java app). You need to be running as a 'GWT Application' to run your project in eclipse.

Re: Including a remote javascript?

2009-07-17 Thread lumo
? thanks in advance lumo -- Eric Z. Ayers - GWT Team - Atlanta, GA USA http://code.google.com/webtoolkit/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread lumo
if not [code] public String getSimpleClassName() { String className = this.getClass().getName(); return className.substring( className.lastIndexOf(.) + 1, className.length()); } [/code] 2009/7/15 Pandaman p4nda...@gmail.com Does GWT 1.7 support

Re: UnsatisfiedLinkError

2009-07-16 Thread lumo
no, i do not have any code running on the server. all i got is a google map and some javascripts in the browser (all written in google-gwt google maps api) 2009/7/16 Dalla dalla_man...@hotmail.com Hi Lumo, Are you doing this on the server side? You cannot use any Maps API functions

BUG and Question?

2009-07-16 Thread lumo
in advance lumo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group, send email to google-web

Re: BUG and Question?

2009-07-16 Thread lumo
shame on me! was a bug, but in MY code! both resolved. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe

Resize (height) of InfoWindow

2009-07-16 Thread lumo
this? (i did not find a function for the existing infowindow.) do i have to implement my own infowindow with this extended functionality? thanks in advance lumo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: UnsatisfiedLinkError

2009-07-16 Thread lumo
i doubt that this will help much but... public String toBioMarker() { String jsResultclass = dataString.substring(0, dataString.indexOf({)); String classData = dataString.substring(dataString.indexOf({) + 1, dataString.length() - 1); String[]

Re: UnsatisfiedLinkError

2009-07-16 Thread lumo
i am using Eclipse with: GooglePlugin for Eclipse 3.4 Google Web Toolkit SDK 1.7.0 i get WARNING: 'com.google.gwt.dev.GWTCompiler' is deprecated and will be removed in a future release. Use 'com.google.gwt.dev.Compiler' instead. every time i compile, but i did not find how to change to GWTShell.

UnsatisfiedLinkError

2009-07-15 Thread lumo
; at com.google.gwt.maps.client.geom.LatLng.newInstance(Native Method) why? i do pass two double values to the function... any ideas? thanks in advance lumo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

GWT, Eclipse and Google-Maps

2009-07-06 Thread lumo
and or code let me know greets lumo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group, send