Details

    • Type: New Feature New Feature
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: None
    • Fix Version/s: 3.2.BETA1, 3.2
    • Component/s: ACE-Components
    • Labels:
      None
    • Environment:
      ICEfaces 3, ACE Components
    • Affects:
      Documentation (User Guide, Ref. Guide, etc.), Sample App./Tutorial

      Description

      Add a new ace:gMap component that will support the Google Maps JavaScript API v3.

        Activity

        Ken Fyten created issue -
        Ken Fyten made changes -
        Field Original Value New Value
        Salesforce Case []
        Fix Version/s 3.1 [ 10312 ]
        Affects [Documentation (User Guide, Ref. Guide, etc.), Sample App./Tutorial]
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #29064 Wed May 16 13:23:10 MDT 2012 ken.fyten Scratchpad for ICE-7826 prototyping.
        Files Changed
        Commit graph ADD /icefaces3/scratchpads/ICE-7826
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #29137 Fri May 18 17:42:01 MDT 2012 brennanm ICE-7826 - Updating to work with changes in data from backing bean + fixing an issue with switches
        Files Changed
        Commit graph MODIFY /icefaces3/scratchpads/ICE-7826/icefaces/compat/components/src/main/java/com/icesoft/faces/component/gmap/GMapMarker.java
        Commit graph MODIFY /icefaces3/scratchpads/ICE-7826/icefaces/compat/components/src/main/java/com/icesoft/faces/component/gmap/GMapControl.java
        Commit graph MODIFY /icefaces3/scratchpads/ICE-7826/icefaces/compat/components/src/main/java/com/icesoft/faces/component/gmap/GMap.java
        Commit graph MODIFY /icefaces3/scratchpads/ICE-7826/icefaces/compat/core/src/main/javascript/extras/extras.js
        Ken Fyten made changes -
        Salesforce Case []
        Fix Version/s 3.1.0.RC1 [ 10337 ]
        Assignee Priority P1
        Assignee Arturo Zambrano [ artzambrano ]
        Ken Fyten made changes -
        Salesforce Case []
        Assignee Priority P1 P3
        Ken Fyten made changes -
        Salesforce Case []
        Fix Version/s 3.2 [ 10338 ]
        Fix Version/s 3.1 [ 10312 ]
        Fix Version/s 3.1.0.RC1 [ 10337 ]
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30547 Fri Aug 17 13:02:58 MDT 2012 art.zambrano ICE-7826 added new ace:gMap component
        Files Changed
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMarkerMeta.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapOverlayMeta.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMeta.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapServicesRenderer.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapResourceHandler.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapLayer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/META-INCLUDE/faces-config.xml
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapLayerMeta.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMarkerRenderer.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMap.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapServicesMeta.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapRenderer.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapOverlayRenderer.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/api.js
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapOverlay.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapServices.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMarker.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/build.xml
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapLayerRenderer.java
        Hide
        Brennan Mckinney added a comment -

        An overview of ace:gMap features as of rev:30615
        For reference, the google API is here: https://developers.google.com/maps/documentation/javascript/reference. If I refer to something like 'options', what I'm talking about can be found in the list.
        Ace:gMap - the main map, as well as options pertaining to it.
        • Basic attributes of a gMap (lat/lng, map type and zoom) are accessible and can be used via the latitude/longitude, zoomLevel and type attributes.
        • Can center the map based on a typed location. Uses address attribute to determine where, but will only update when locateAddress = true, or the page is initializing.
        • Options attribute can control any of the 'mapOptions' options. The format to use is options= "property:value, property:value,..."
        o More complex options can be nested within the options attribute. For example, options="zoomControlOptions:

        {style: google.maps.ZoomControlStyle.SMALL, position: google.maps.ControlPosition.BOTTOM_CENTER }

        " makes the zoom control small and locates it in the bottom of the screen.
        Ace:gMapLayer - Adds layers to the gMap. Anything under the 'layers' category in the API reference.
        • Bicycling, KML, Traffic, Transit all work fine.
        o Unsure about fusionTablesLayer, as I can't actually test that. Fusion Tables seems to be in a closed beta, and I don't have the privileges to access it.
        • For Bicycling, Traffic or Transit all that is needed is to specify mapType=bicycling/traffic/transit.
        • KML layers requires url attribute to be set to desired site.
        o KML layer options can be set with options
        • The KMLmetadata and KMLstatus are currently inaccessible.
        Ace:gMapMarker - dedicated subcomponent for gMap Markers. (Not sure if we should merge with gMapOverlay, to group with similar things, or leave it here for ease of access.
        • Fairly basic. Latitude/Longitude sets position, and options allow access to MarkerOptions.
        • Would be good if we could return the current location/reference of a marker, and place a marker on an address. (See improvements, below.)
        Ace:gMapOverlay - Controls the overlays portion of the API. Recently updated by google, so we don't have all of the features within. Points are currently set as (lat,lng):(lat,lng):...
        • Working:
        o Polyline

        • Set shape to line/polyline, points determine where the line goes, in order. Options set polylineOptions
          o Polygon
        • Set shape to polygon, points determine the shape, with each point connecting to the next and last connecting to the first. Options set PolygonOptions
          o Rectangle
        • Set shape to rectangle, first point determines top left corner. Second determines bottom right. Others are ignored. Options set RectangleOptions.
          o Circle
        • Set shape to circle. First point sets center, others are ignored. Options set circle options, and radius property needs to be set.
          • Not Working:
          o Ground overlay: Very different from the rest of the overlays, putting an image on the map.
          o Symbol: New feature that I haven't gotten to play with much yet. Looks more complicated than existing overlays.
          o Marker: Already in gMapMarker
          Ace:gMapServices - The services section of the API.
          • Working
          o DirectionsService
        • Prints directions between given points on map. First point is start, last point is end, all intermediate points function as waypoints that the directions must pass through. Points are separated by a :, and can either be (lat,lng) or a written address.
        • TravelMode option needs to be set. Any other option under DirectionsRequest is put in options.
        • Cannot currently update DirectionsRendererOptions. This is important, as I believe that that needs to be possible to get a written output of directions, though I am not sure.
          o ElevationService
        • Takes points in form (lat,lng):(lat,lng):...
        • Returns the height of each point given in an alert. Not sure if this is best output method. Also, should probably update so that it has a true/false, so that it will only display when requested.
          o MaxZoomService
        • Takes one point as (lat,lng)
        • Returns the maximum zoom at point given in an alert. Not sure if this is best output method. Also, should probably update so that it has a true/false, so that it will only display when requested.
          o DistanceMatrixService
        • Takes two points as either written address or (lat,lng) separated by a :
        • Returns the distance between the two points as an alert. Not sure if this is best output method. Also, should probably update so that it has a true/false, so that it will only display when requested.
          • Not working
          o Geocoder
          Two things that would improve the component majorly:
          1) A general geocoder method that all of the other components can call on. Google has made most of the other services/overlays/markers/etc require a lat/lng point, which can be a real pain to find properly. If we create a geocoder method and allow addresses to be used in all of these, with them being converted to lat/lngs behind the scenes, it would make our components significantly easier to use and give us an advantage even over the official google maps API.
          2) Currently, every value that the map has is being re-updated from the bean each time a value is changed. What this means is that any changes made to the map through the map itself (ie, dragging the view, changing the zoom, altering the map type) is undone and reset to whatever is in the bean. This makes the component seem very clunky, and can be rather irritating. There are two ways to fix it, however. The first (and best) way of doing it is by getting the javascript to update the values in the bean as it gets changed in the map. I'm not sure how feasible this is, but I've been told that we have a bridge designed to accomplish it. If we can get it working, however, it will pay off in other ways besides just making it look smoother. The other way is using logic in the renderers to only reupdate the portions of the map/component that have to be changed. I've attached a version of ace:gMapRenderer that will show how it looks in beta, but this version doesn't work properly after a page refresh.

        Feasibility of including remaining sections(the libraries):
        Geometry Library - Background library already being used by overlay. No further access needed.

        AdSense Library - Will likely fit with ace:gMap

        Panoramio Library - Will likely fit with ace:gMap

        Places Library - Will not fit with ace:gMap, likely requires a separate component if desired.

        Drawing Library - Background library already being used by overlay. No further access needed.

        Weather Library - Will fit with ace:gMap

        Visualization Library - Will fit with ace:gMap

        Show
        Brennan Mckinney added a comment - An overview of ace:gMap features as of rev:30615 For reference, the google API is here: https://developers.google.com/maps/documentation/javascript/reference . If I refer to something like 'options', what I'm talking about can be found in the list. Ace:gMap - the main map, as well as options pertaining to it. • Basic attributes of a gMap (lat/lng, map type and zoom) are accessible and can be used via the latitude/longitude, zoomLevel and type attributes. • Can center the map based on a typed location. Uses address attribute to determine where, but will only update when locateAddress = true, or the page is initializing. • Options attribute can control any of the 'mapOptions' options. The format to use is options= "property:value, property:value,..." o More complex options can be nested within the options attribute. For example, options="zoomControlOptions: {style: google.maps.ZoomControlStyle.SMALL, position: google.maps.ControlPosition.BOTTOM_CENTER } " makes the zoom control small and locates it in the bottom of the screen. Ace:gMapLayer - Adds layers to the gMap. Anything under the 'layers' category in the API reference. • Bicycling, KML, Traffic, Transit all work fine. o Unsure about fusionTablesLayer, as I can't actually test that. Fusion Tables seems to be in a closed beta, and I don't have the privileges to access it. • For Bicycling, Traffic or Transit all that is needed is to specify mapType=bicycling/traffic/transit. • KML layers requires url attribute to be set to desired site. o KML layer options can be set with options • The KMLmetadata and KMLstatus are currently inaccessible. Ace:gMapMarker - dedicated subcomponent for gMap Markers. (Not sure if we should merge with gMapOverlay, to group with similar things, or leave it here for ease of access. • Fairly basic. Latitude/Longitude sets position, and options allow access to MarkerOptions. • Would be good if we could return the current location/reference of a marker, and place a marker on an address. (See improvements, below.) Ace:gMapOverlay - Controls the overlays portion of the API. Recently updated by google, so we don't have all of the features within. Points are currently set as (lat,lng):(lat,lng):... • Working: o Polyline Set shape to line/polyline, points determine where the line goes, in order. Options set polylineOptions o Polygon Set shape to polygon, points determine the shape, with each point connecting to the next and last connecting to the first. Options set PolygonOptions o Rectangle Set shape to rectangle, first point determines top left corner. Second determines bottom right. Others are ignored. Options set RectangleOptions. o Circle Set shape to circle. First point sets center, others are ignored. Options set circle options, and radius property needs to be set. • Not Working: o Ground overlay: Very different from the rest of the overlays, putting an image on the map. o Symbol: New feature that I haven't gotten to play with much yet. Looks more complicated than existing overlays. o Marker: Already in gMapMarker Ace:gMapServices - The services section of the API. • Working o DirectionsService Prints directions between given points on map. First point is start, last point is end, all intermediate points function as waypoints that the directions must pass through. Points are separated by a :, and can either be (lat,lng) or a written address. TravelMode option needs to be set. Any other option under DirectionsRequest is put in options. Cannot currently update DirectionsRendererOptions. This is important, as I believe that that needs to be possible to get a written output of directions, though I am not sure. o ElevationService Takes points in form (lat,lng):(lat,lng):... Returns the height of each point given in an alert. Not sure if this is best output method. Also, should probably update so that it has a true/false, so that it will only display when requested. o MaxZoomService Takes one point as (lat,lng) Returns the maximum zoom at point given in an alert. Not sure if this is best output method. Also, should probably update so that it has a true/false, so that it will only display when requested. o DistanceMatrixService Takes two points as either written address or (lat,lng) separated by a : Returns the distance between the two points as an alert. Not sure if this is best output method. Also, should probably update so that it has a true/false, so that it will only display when requested. • Not working o Geocoder Two things that would improve the component majorly: 1) A general geocoder method that all of the other components can call on. Google has made most of the other services/overlays/markers/etc require a lat/lng point, which can be a real pain to find properly. If we create a geocoder method and allow addresses to be used in all of these, with them being converted to lat/lngs behind the scenes, it would make our components significantly easier to use and give us an advantage even over the official google maps API. 2) Currently, every value that the map has is being re-updated from the bean each time a value is changed. What this means is that any changes made to the map through the map itself (ie, dragging the view, changing the zoom, altering the map type) is undone and reset to whatever is in the bean. This makes the component seem very clunky, and can be rather irritating. There are two ways to fix it, however. The first (and best) way of doing it is by getting the javascript to update the values in the bean as it gets changed in the map. I'm not sure how feasible this is, but I've been told that we have a bridge designed to accomplish it. If we can get it working, however, it will pay off in other ways besides just making it look smoother. The other way is using logic in the renderers to only reupdate the portions of the map/component that have to be changed. I've attached a version of ace:gMapRenderer that will show how it looks in beta, but this version doesn't work properly after a page refresh. Feasibility of including remaining sections(the libraries): Geometry Library - Background library already being used by overlay. No further access needed. AdSense Library - Will likely fit with ace:gMap Panoramio Library - Will likely fit with ace:gMap Places Library - Will not fit with ace:gMap, likely requires a separate component if desired. Drawing Library - Background library already being used by overlay. No further access needed. Weather Library - Will fit with ace:gMap Visualization Library - Will fit with ace:gMap
        Hide
        Brennan Mckinney added a comment -

        Alpha version of smooth gMap.

        Show
        Brennan Mckinney added a comment - Alpha version of smooth gMap.
        Brennan Mckinney made changes -
        Attachment GMapRenderer.java [ 14836 ]
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30839 Thu Sep 13 15:12:11 MDT 2012 art.zambrano ICE-7826 ace:gMap, fixed first-loading issues
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Hide
        Arturo Zambrano added a comment - - edited

        Currently supported features:
        Map

        • Specify latitude and longitude, zoom level, address to locate, and map type.
          Controls
        • Add/remove controls of the following types: overview, pan, rotate, scale, streetview, zoom.
        • Specify position of control within map window.
        • Specify control style.
          Marker
        • Specify latitude and longitude, and animation.
          Overlays
        • Create Line, Polygon, Rectangle, and Circle shapes.
        • Specify array of points.
          InfoWindow
        • Specify latitude and longitude.
        • Specify text content or nest components inside InfoWindow.
        • Ability to nest component inside a marker to use its position.
          Services
        • Use Directions, Elevation, MaxZoom, and Distance services
        • Specify array of points.
          Layers
        • Add Bicycling, Traffic, Transit, FusionTables and KML layers.
        • Specify whether layer is visible or not.
        • Specify KML file URL.
          Advanced options are available via the 'options' attribute in the main ace:gMap component and subcomponents.
        Show
        Arturo Zambrano added a comment - - edited Currently supported features: Map Specify latitude and longitude, zoom level, address to locate, and map type. Controls Add/remove controls of the following types: overview, pan, rotate, scale, streetview, zoom. Specify position of control within map window. Specify control style. Marker Specify latitude and longitude, and animation. Overlays Create Line, Polygon, Rectangle, and Circle shapes. Specify array of points. InfoWindow Specify latitude and longitude. Specify text content or nest components inside InfoWindow. Ability to nest component inside a marker to use its position. Services Use Directions, Elevation, MaxZoom, and Distance services Specify array of points. Layers Add Bicycling, Traffic, Transit, FusionTables and KML layers. Specify whether layer is visible or not. Specify KML file URL. Advanced options are available via the 'options' attribute in the main ace:gMap component and subcomponents.
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30844 Fri Sep 14 10:36:47 MDT 2012 brennanm ICE-7826 - Modifying the style and styleClass attributes of ace:gMap, updating demos to match.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapMarker.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapLayer.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapDirections.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOverlay.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOptions.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapBasic.xhtml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30860 Fri Sep 14 16:59:01 MDT 2012 brennanm ICE-7826 - Adding div property to ace:gMapServices, adding gMap to combined.css
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMeta.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gMap.css
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30892 Mon Sep 17 16:12:02 MDT 2012 brennanm ICE-7826 - Adding documentation to ace:gMap demos, along with misc. bug fixes to how they fit into the showcase.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/java/org/icefaces/samples/showcase/example/ace/gMap/MapBean.java
        Commit graph ADD /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/java/org/icefaces/samples/showcase/ace/documentationResources/GMapResources.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapMarker.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapLayer.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapDirections.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOverlay.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOptions.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/resources/org/icefaces/samples/showcase/view/resources/messages.properties
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapBasic.xhtml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30894 Mon Sep 17 16:22:46 MDT 2012 brennanm ICE-7826 - Adding brief note to options demo about rotate control.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOptions.xhtml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30917 Tue Sep 18 14:49:20 MDT 2012 brennanm ICE-7826 - Fixing recreate/remove issue. Should work in standalone and showcase environments now.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30922 Tue Sep 18 17:08:15 MDT 2012 brennanm ICE-7826 - Minor update to re-enable findAddress
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30926 Wed Sep 19 11:13:10 MDT 2012 brennanm ICE-7826 - Adding a wrapper div to keep the location of the gMap within the html.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapRenderer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30937 Wed Sep 19 17:03:50 MDT 2012 brennanm ICE-7826 - Clarification on some of the showcase demos, removal of a dead KML link, hopefully a fix for IE7 issues.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapLayer.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/java/org/icefaces/samples/showcase/example/ace/gMap/MapLayerBean.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOverlay.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOptions.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #30952 Thu Sep 20 14:20:10 MDT 2012 brennanm ICE-7826 - Adding (beta)ace:gMapAutocomplete. It works fine, but it doesn't have the level of polish that I'd like. To be used in a demo Brian requested. Fixed an issue that would prevent options from working when child components were present.
        Files Changed
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteRenderer.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapControlRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocomplete.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31057 Tue Sep 25 12:27:34 MDT 2012 brennanm ICE-7826 -(beta)ace:gMapAutocomplete: Adding flawed version for revision by someone more knowledgeable about ajax
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31069 Tue Sep 25 15:10:57 MDT 2012 brennanm ICE-7826 -(beta)ace:gMapAutocomplete: removing cross-dependency
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31073 Tue Sep 25 16:14:16 MDT 2012 brennanm ICE-7826 -(beta)ace:gMapAutocomplete: Working version, with auto-updating values.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31105 Wed Sep 26 15:09:48 MDT 2012 brennanm ICE-7826 - ace:gMapAutocomplete: Updated with a few new attributes for improved functionality (offset and windowOptions)
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31208 Fri Sep 28 17:19:52 MDT 2012 ted.goddard using parentNode.removeChild (ICE-7826)
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31209 Fri Sep 28 17:20:35 MDT 2012 ted.goddard updating to icefaces-ace.jar from trunk 31208 (ICE-7826)
        Files Changed
        Commit graph MODIFY /projects/pointme/lib/icefaces-ace.jar
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31215 Fri Sep 28 17:59:57 MDT 2012 ted.goddard catching Throwable during text rendering (ICE-7826)
        Files Changed
        Commit graph MODIFY /projects/pointme/src/main/java/org/icefaces/demo/pointme/DemoBean.java
        Hide
        Florian Hell added a comment - - edited

        Still an Issue with gMapMarker, markers are not shown if the gmap width is smaller than 1000px. Weird Bug

        Show
        Florian Hell added a comment - - edited Still an Issue with gMapMarker, markers are not shown if the gmap width is smaller than 1000px. Weird Bug
        Hide
        Brennan Mckinney added a comment - - edited

        Could not reproduce above issue. Is there any way you can give us an example of the code you're using?

        Show
        Brennan Mckinney added a comment - - edited Could not reproduce above issue. Is there any way you can give us an example of the code you're using?
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31459 Fri Oct 12 16:39:46 MDT 2012 art.zambrano ICE-7826 improved InfoWindow component to support displaying nested components in window and supporting dynamic updates of those components
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowRenderer.java
        Hide
        Arturo Zambrano added a comment - - edited

        Improved InfoWindow component to support not only HTML markup but components as well and support dynamic updates of those components while inside the window. Committed to trunk at revision 31459

        Show
        Arturo Zambrano added a comment - - edited Improved InfoWindow component to support not only HTML markup but components as well and support dynamic updates of those components while inside the window. Committed to trunk at revision 31459
        Hide
        Arturo Zambrano added a comment - - edited

        Marking this JIRA as Fixed. The component and subcomponents have been created and are functional. All other issues found should be tracked in separate JIRAs.
        Created ICE-8658 to track the issue with ace:tabSet.

        Show
        Arturo Zambrano added a comment - - edited Marking this JIRA as Fixed. The component and subcomponents have been created and are functional. All other issues found should be tracked in separate JIRAs. Created ICE-8658 to track the issue with ace:tabSet.
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31596 Thu Oct 18 15:49:24 MDT 2012 brennanm ICE-7826 - Updating map to allow changes made through the map interface to persist, if placed inside a form with the elements altering the bean.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOptions.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapBasic.xhtml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31726 Wed Oct 24 11:12:45 MDT 2012 brennanm ICE-7826 - Updating and improving TLD documentation
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMarkerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapOverlayMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapLayerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapControlMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapServicesMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31742 Wed Oct 24 15:19:24 MDT 2012 brennanm ICE-7826 - Improvements to showcase demos.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/java/org/icefaces/samples/showcase/example/ace/gMap/MapBean.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapMarker.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapLayer.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapDirections.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOverlay.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOptions.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapBasic.xhtml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31767 Thu Oct 25 13:48:25 MDT 2012 brennanm ICE-7826 - Updating and improving TLD documentation, v2
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMarkerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapOverlayMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapLayerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapControlMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapServicesMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31768 Thu Oct 25 14:05:03 MDT 2012 brennanm ICE-7826 - Updating and improving TLD documentation, v2
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMarkerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapOverlayMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapLayerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapControlMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapServicesMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31812 Mon Oct 29 10:14:22 MDT 2012 brennanm ICE-7826 - Updating and improving gMap showcase demos for ease of use/understanding.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/java/org/icefaces/samples/showcase/example/ace/gMap/MapBean.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapMarker.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapLayer.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapDirections.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOverlay.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOptions.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/java/org/icefaces/samples/showcase/example/ace/gMap/MapMarkerBean.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapBasic.xhtml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31829 Mon Oct 29 17:38:01 MDT 2012 art.zambrano ICE-7826 added checks to see if elements exist before modifying their attributes
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31830 Mon Oct 29 17:43:13 MDT 2012 art.zambrano ICE-7826 set different ids to the gmap components of different pages
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapMarker.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapLayer.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapDirections.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOverlay.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapOptions.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapBasic.xhtml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31877 Wed Oct 31 14:17:59 MDT 2012 brennanm ICE-7826 - Updating recreate method in javascript so that markers and overlays aren't lost.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31906 Thu Nov 01 11:49:26 MDT 2012 brennanm ICE-7826 - Adding showOnClick and startOpen attributes/functionality to info window
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #31907 Thu Nov 01 11:54:00 MDT 2012 ken.fyten ICE-7826 - Adding showOnClick and startOpen attributes/functionality to info window.
        Files Changed
        Commit graph MODIFY /icefaces3/tags/icefaces-3.2.0/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowRenderer.java
        Commit graph MODIFY /icefaces3/tags/icefaces-3.2.0/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowMeta.java
        Commit graph MODIFY /icefaces3/tags/icefaces-3.2.0/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Commit graph MODIFY /icefaces3/tags/icefaces-3.2.0/icefaces/build.properties
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #32227 Mon Nov 19 15:26:39 MST 2012 brennanm ICE-7826 - Minor update to gMapControl to reflect a change made in the google API.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #32228 Mon Nov 19 16:36:23 MST 2012 brennanm ICE-7826 - Minor update to gMapControl to reflect a change made in the google API.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #32269 Wed Nov 21 09:52:56 MST 2012 brennanm ICE-7826 - Removing incomplete event
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #32309 Thu Nov 22 13:31:01 MST 2012 brennanm ICE-7826 - Adding disabled attributes to two components (marker and info window) to better remove them from the map.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMarkerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapOverlayMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapServicesRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapResourceHandler.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapLayerMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMarkerRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapServicesMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapInfoWindowRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapOverlayRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapAutocompleteRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapControlRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapControlMeta.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapLayerRenderer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #32429 Tue Nov 27 14:31:18 MST 2012 brennanm ICE-7826 - Committing a fix regarding now infoWindows were added to the wrapper object, solving an issue with infoWindow and multiple components.
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #32430 Tue Nov 27 14:35:49 MST 2012 brennanm ICE-7826 - Removing left over logging messages that I forgot to remove before last commit
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #32440 Tue Nov 27 17:28:35 MST 2012 brennanm ICE-7826 - Fixing issue with infoWindow's openOnClick attribute
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Migration made changes -
        Fix Version/s 3.2.BETA1 [ 10360 ]
        Fix Version/s 3.2 [ 10338 ]
        Migration made changes -
        Status Open [ 1 ] Resolved [ 5 ]
        Resolution Fixed [ 1 ]
        Ken Fyten made changes -
        Fix Version/s 3.2 [ 10338 ]
        Ken Fyten made changes -
        Status Resolved [ 5 ] Closed [ 6 ]
        Assignee Priority P3 [ 10012 ]
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #33140 Sat Jan 19 14:31:10 MST 2013 brennanm ICE-7826 - Adding first version of ace:gMapEvent. ToDo: source or nested JavaScript.
        Files Changed
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapEventRenderer.java
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapEvent.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Commit graph ADD /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapEventMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #33319 Mon Feb 04 16:04:09 MST 2013 art.zambrano ICE-7826 corrected implementation of capability to update the backing bean from direct interaction with the map
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapMeta.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #34049 Sat Mar 23 17:48:46 MDT 2013 brennanm ICE-7826 - Component/map var fix, plus showcase demo for gMapEvent
        Files Changed
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapEventRenderer.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/java/org/icefaces/samples/showcase/example/ace/gMap/MapBean.java
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/resources/icefaces.ace/gmap/gmap.js
        Commit graph MODIFY /icefaces3/trunk/icefaces/ace/component/src/org/icefaces/ace/component/gmap/GMapEventMeta.java
        Commit graph ADD /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/webapp/resources/examples/ace/gMap/gMapEvent.xhtml
        Commit graph MODIFY /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/resources/org/icefaces/samples/showcase/view/resources/messages.properties
        Commit graph ADD /icefaces3/trunk/icefaces/samples/showcase/showcase/src/main/java/org/icefaces/samples/showcase/example/ace/gMap/MapEventBean.java

          People

          • Assignee:
            Arturo Zambrano
            Reporter:
            Ken Fyten
          • Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: