5 nov 2008

Embedding Google Maps in Java Server Faces using GMaps4JSF

Esto me parecio interesante para aquello javeros de corazon y de puño y letra y cincel, no me parecio correcto traducirlo por en si el contenido es explicito por si mismo asi que lean....

GMaps4JSF allows Google Maps to be easily integrated with any JSF application. This blog shows how to use this library with Mojarra - JSF implementation delivered from the GlassFish community.

This explains how to create a simple JSF 2.0 application and deploy on GlassFish v3 prelude using Mojarra 2.0 EDR2. The application allows to create a database of cities/country that you like. It uses integrated Facelets and the newly introduced JavaScript APIs to expose Ajax functionality. This blog shows how to extend that application to display a Google Map and Street View of the entered city using this library.

  1. Configure GMapsJSF library in the NetBeans project (created as described in TOTD #50)
    1. Download gmaps4jsf-core-1.1.jar.
    2. In the existing NetBeans project, right-click on the project, select Properties, Libraries, click on "Add JAR/Folder" and point to the recently download JAR.
    3. Configure Facelets support for this library. This is an important step since Facelets are the default viewing technology in JSF 2.0.
  2. In the NetBeans project, create a new Java class "server.CityCoordinates" that will use Google Geocoding APIs to retrieve latitude and longitude of the entered city. It also create a "details" entry by concatenating city and country name. Use the code listed below:

    private float latitude;
    private float longitude;
    private String details;
    @ManagedProperty(value="#{cities}")
    private Cities cities;
    private final String BASE_GEOCODER_URL = "http://maps.google.com/maps/geo?";
    private final String ENCODING = "UTF-8";
    private final String GOOGLE_MAPS_KEY = "GOOGLE_MAPS_API_KEY";
    private final String OUTPUT_FORMAT = "CSV";
    public String getLatLong() throws IOException {
    details = cities.getCityName() + ", " + cities.getCountryName();
    String GEOCODER_REQUEST =
    BASE_GEOCODER_URL +
    "q=" + URLEncoder.encode(details, ENCODING) +
    "&key=" + GOOGLE_MAPS_KEY +
    "&output=" + OUTPUT_FORMAT;
    BufferedReader reader = new BufferedReader(
    new InputStreamReader(
    new URL(GEOCODER_REQUEST).openStream()));
    String line = null;
    int statusCode = -1;
    while ((line = reader.readLine()) != null) {
    // 200,4,37.320052,-121.877636
    // status code,accuracy,latitude,longitude
    statusCode = Integer.parseInt(line.substring(0, 3));
    if (statusCode == 200) {
    int secondComma = line.indexOf(",", 5);
    int lastComma = line.lastIndexOf(",");
    latitude = Float.valueOf(line.substring(secondComma+1, lastComma));
    longitude = Float.valueOf(line.substring(lastComma+1));
    System.out.println("Latitude: " + latitude);
    System.out.println("Longitude: " + longitude);
    }
    }
    return "map";
    }
    // getters and setters

    "getLatLong()" method retrieves geocoding information using HTTP by passing the city and country name, Google Maps API key and CSV output format. The result is then processed to retrieve status code, latitude and longitude. Add the following annotation to this class:

    @ManagedBean(name="coords", scope="request")

    This ensures that "server.CityCoordinates" is injected as a managed bean in the runtime.

  3. Add a new button in "welcome.xhtml" right after "submit" button as:

    <h:commandButton action="#{coords.getLatLong}" value="map"/>

  4. Add a new page "map.xhtml" as:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:m="http://code.google.com/p/gmaps4jsf/">
    <head>
    <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAF9QYjrVEsD9al2QCyg8e-hTwM0brOpm-All5BF6PoaKBxRWWERRHQdtsJnNsqELmKZCKghs54I-0Uw" type="text/javascript"> </script>
    </head>
    <body>
    <m:map
    latitude="#{coords.latitude}"
    longitude="#{coords.longitude}"
    width="500px"
    height="300px"
    zoom="14"
    addStretOverlay="true">
    <m:marker draggable="true">
    <m:eventListener eventName="dragend" jsFunction="showStreet"/>
    </m:marker>
    <m:htmlInformationWindow htmlText="#{coords.details}"/>
    <m:mapControl name="GLargeMapControl" position="G_ANCHOR_BOTTOM_RIGHT"/>
    <m:mapControl name="GMapTypeControl"/>
    </m:map>
    <br/> <br/>
    <m:streetViewPanorama width="500px" height="200px"
    latitude="#{coords.latitude}" longitude="#{coords.longitude}"
    jsVariable="pano1" />
    <script type="text/javascript">
    function showStreet(latlng) {
    pano1.setLocationAndPOV(latlng);
    }
    </script>
    <form jsfc="h:form">
    <input jsfc="h:commandButton" action="back" value="Back"/>
    </form>
    </body>
    </html>

    The code is borrowed and explained in An Introduction to GMaps4JSF. Basically the code displays a Google Map and Street View where the latitude and longitude are bound by "server.CityCoordinates" managed bean. And these attributes are populated using the geocoding information earlier. The Street View corresponds to marker in the Map which is draggable. So if the marker is dropped to a different location in the map then the Street View changes accordingly.

  5. Add new navigation rules to "faces-config.xml" as:

    <navigation-rule>
    <from-view-id>/welcome.xhtml</from-view-id>
    <navigation-case>
    <from-outcome>map</from-outcome>
    <to-view-id>/map.xhtml</to-view-id>
    </navigation-case>
    </navigation-rule>
    <navigation-rule>
    <from-view-id>/map.xhtml</from-view-id>
    <navigation-case>
    <from-outcome>back</from-outcome>
    <to-view-id>/welcome.xhtml</to-view-id>
    </navigation-case>
    </navigation-rule>

That's it, now your application is ready!
Now when a city and country name are entered on "welcome.xhtml" and "map" button is clicked then the corresponding Google Map along with the street view are shown in next page.
If "San Jose" is entered on "http://localhost:8080/Cities/faces/welcome.xhtml" then the following page is shown:

Clicking on "map" button shows the following page:

If the marker is drag/dropped to 280 and 87 junction, then the page looks like:

Embedding Google Maps in Java Server Faces using GMaps4JSF

No hay comentarios:

Related Posts Plugin for WordPress, Blogger...