Hi Fabian (and the rest community)
thanks for the fast help. I´ve got the informations I need for my next steps.

Regards
Jürgen
Jürgen Stolz schrieb:
Hi Fabian,
thanks for the reply. I found this code too, but my problem is how to initialize the google api from the 
application.js (see attachment).  The error msg I see  (Firebug) is "google is not defined" [Break 
on this error] google.load("maps", "2");
Where (how?) should I initialize "google".

you need to add this into your "index.html" file:

<script type="text/javascript" src="http://www.google.com/jsapi?key=ABCDEFG";></script>

replace "ABCDEFG" with your google key.


Best Fabian

Regards
Jürgen





-------- Original-Nachricht --------
Datum: Mon, 13 Oct 2008 09:14:52 +0200
Von: Fabian Jakobs <[EMAIL PROTECTED]>
An: qooxdoo Development <qooxdoo-devel@lists.sourceforge.net>
Betreff: Re: [qooxdoo-devel] Attach google maps
Jürgen Stolz schrieb:
Hello together,
this are m first steps with QooxDoo and one of my goals is to access google maps. I don´t find an entry point how I can display a map (like http://map.ovjih.net/). Could somebody give me a hint or a small code example?

Hello Jürgen,

you can use a qx.ui.embed.Html widget to display a google map. Since qooxdoo widgets are not rendered immediately you need to wait for the "appear" event to load the map into the widget. Your code could look something like this (not tested)

google.load("maps", "2.x");

var map = new qx.ui.embed.Html();
map.addListenerOnce("appear", function(e)
{
var gmap = new google.maps.Map2(map.getContentElement().getDomElement());
   gmap.setCenter(new google.maps.LatLng(37.4419, -122.1419), 13);
}, this);

The google example code is from <http://code.google.com/apis/maps/documentation/index.html#AJAX_Loader>
I hope this works :-)

Best Fabian



--
Fabian Jakobs
JavaScript Framework Developer

1&1 Internet AG
Brauerstraße 48
76135 Karlsruhe

Amtsgericht Montabaur HRB 6484

Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Thomas
Gottschlich, Matthias Greve, Robert Hoffmann, Markus Huhn, Oliver Mauss, Achim
Weiss
Aufsichtsratsvorsitzender: Michael Scheeren


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's
challenge
Build the coolest Linux based applications with Moblin SDK & win great
prizes
Grand prize is a trip for two to an Open Source event anywhere in the
world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
------------------------------------------------------------------------

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
------------------------------------------------------------------------

_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel


H
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to