blob: 4f38e07f263259d9eef4943e79964ff9f82dae7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<module>
<!-- Inherit DefaultWidgetSet -->
<inherits name="com.vaadin.terminal.gwt.DefaultWidgetSet" />
<!-- The googlemaps_gwt module -->
<inherits name="com.google.gwt.maps.GoogleMaps" />
<!-- WidgetSet default theme -->
<stylesheet src="reservr/styles.css"/>
<!--
Google Maps needs an API key if you're not running this demo on "localhost".
You can get a Google Maps API key here:
http://www.google.com/apis/maps/signup.html
Append your Google Maps API key to the src -attribute below, like so:
src="http://maps.google.com/maps?gwt=1&file=api&v=2.x&key=XXXXXXXX"
where the X:s represent your key.
-->
<!-- Works w/o key for localhost:
<script src="http://maps.google.com/maps?gwt=1&file=api&v=2.x" />
-->
<!-- Using key for http://demo.vaadin.com: -->
<script src="http://maps.google.com/maps?gwt=1&file=api&v=2.x&key=ABQIAAAAP3UBMIhn15mgO6uIqO_GVRTjfRw0y7NvUKCc8_UnYaOyzzWA_xRoBYGzLMNrw-8-IesNKDC1WFd_vg" />
</module>
|