myOptions.setMapTypeId(MapTypeId.ROADMAP);
GoogleMap map = GoogleMap.create(
Document.get().getElementById("map_canvas"), myOptions);
System.out.println("llega a crear el mapa !!");
MarkerOptions markerOpts = MarkerOptions.create();
markerOpts.setPosition(myLatLng);
markerOpts.setTitle(address);
markerOpts.setMap(map);
Marker marc = Marker.create(markerOpts);
if (porc < 34.0)
marc.setIcon("http://maps.google.com/mapfiles/ms/icons/blue-dot.png");
else if (porc < 51)