|
Hi devs,
I have a list of recorded events, each one with its GPS coordinates, and I want to create a screen with a map (google ?) where they are shown. I know that in the OFBiz framework there is some geolocalization feature but I never used it. Do you think that the existing feature can be used to do what I want? Any pointer ? Many thanks, -Bruno |
|
Administrator
|
Hi Bruno,
Yes sure it was designed with this in mind. It should be extended though. Should be very simple, look for the javascript examples. I guess Googling for mulit-points you should quickly find examples. Jacques From: "Bruno Busco" <[hidden email]> > Hi devs, > I have a list of recorded events, each one with its GPS coordinates, > and I want to create a screen with a map (google ?) where they are > shown. > I know that in the OFBiz framework there is some geolocalization > feature but I never used it. > > Do you think that the existing feature can be used to do what I want? > Any pointer ? > > Many thanks, > -Bruno > |
|
Hi Jacques,
is there some documentation od even a simple JIRA or ML discussion where I can read how does it work now? Or may be could you point me to the files/entity involved? Many thanks, -Bruno 2009/12/12 Jacques Le Roux <[hidden email]>: > Hi Bruno, > > Yes sure it was designed with this in mind. It should be extended though. > Should be very simple, look for the javascript examples. I guess Googling > for mulit-points you should quickly find examples. > > Jacques > > From: "Bruno Busco" <[hidden email]> >> >> Hi devs, >> I have a list of recorded events, each one with its GPS coordinates, >> and I want to create a screen with a map (google ?) where they are >> shown. >> I know that in the OFBiz framework there is some geolocalization >> feature but I never used it. >> >> Do you think that the existing feature can be used to do what I want? >> Any pointer ? >> >> Many thanks, >> -Bruno >> > > > |
|
In reply to this post by Bruno Busco
Bruno,
I did some work along these lines 2-3 years ago, but I can't find it, now. But I did add WfsEventHandler to work with Geoserver, I believe. It is probably more than you want right now. I also remember using the RomeEventHandler to implement GeoRSS and populated a Google map with markers that way. I would definitely look into GeoRSS (http://www.georss.org/Main_Page) to do what you want. Sorry I can't be of more help. -Al Byers On Fri, Dec 11, 2009 at 3:42 PM, Bruno Busco <[hidden email]> wrote: > Hi devs, > I have a list of recorded events, each one with its GPS coordinates, > and I want to create a screen with a map (google ?) where they are > shown. > I know that in the OFBiz framework there is some geolocalization > feature but I never used it. > > Do you think that the existing feature can be used to do what I want? > Any pointer ? > > Many thanks, > -Bruno > |
|
Should have included this link:
http://googlemapsapi.blogspot.com/2007/03/kml-and-georss-support-added-to-google.html On Sat, Dec 12, 2009 at 12:52 AM, Al Byers <[hidden email]> wrote: > Bruno, > > I did some work along these lines 2-3 years ago, but I can't find it, > now. But I did add WfsEventHandler to work with Geoserver, I believe. > It is probably more than you want right now. > > I also remember using the RomeEventHandler to implement GeoRSS and > populated a Google map with markers that way. I would definitely look > into GeoRSS (http://www.georss.org/Main_Page) to do what you want. > > Sorry I can't be of more help. > > -Al Byers > > On Fri, Dec 11, 2009 at 3:42 PM, Bruno Busco <[hidden email]> wrote: >> Hi devs, >> I have a list of recorded events, each one with its GPS coordinates, >> and I want to create a screen with a map (google ?) where they are >> shown. >> I know that in the OFBiz framework there is some geolocalization >> feature but I never used it. >> >> Do you think that the existing feature can be used to do what I want? >> Any pointer ? >> >> Many thanks, >> -Bruno >> > |
|
Administrator
|
In reply to this post by Bruno Busco
Hi Bruno,
Look for GeoPoint in *.ftl, *.java, *.js, *.xml file. Should be enough for a guy like you ;o) Jacques From: "Bruno Busco" <[hidden email]> > Hi Jacques, > is there some documentation od even a simple JIRA or ML discussion > where I can read how does it work now? > Or may be could you point me to the files/entity involved? > > Many thanks, > -Bruno > > 2009/12/12 Jacques Le Roux <[hidden email]>: >> Hi Bruno, >> >> Yes sure it was designed with this in mind. It should be extended though. >> Should be very simple, look for the javascript examples. I guess Googling >> for mulit-points you should quickly find examples. >> >> Jacques >> >> From: "Bruno Busco" <[hidden email]> >>> >>> Hi devs, >>> I have a list of recorded events, each one with its GPS coordinates, >>> and I want to create a screen with a map (google ?) where they are >>> shown. >>> I know that in the OFBiz framework there is some geolocalization >>> feature but I never used it. >>> >>> Do you think that the existing feature can be used to do what I want? >>> Any pointer ? >>> >>> Many thanks, >>> -Bruno >>> >> >> >> > |
|
Ok, thanks! .... just looking for a soft start... ;-)
-Bruno 2009/12/12 Jacques Le Roux <[hidden email]>: > Hi Bruno, > > Look for GeoPoint in *.ftl, *.java, *.js, *.xml file. Should be enough for a > guy like you ;o) > > Jacques > > From: "Bruno Busco" <[hidden email]> >> >> Hi Jacques, >> is there some documentation od even a simple JIRA or ML discussion >> where I can read how does it work now? >> Or may be could you point me to the files/entity involved? >> >> Many thanks, >> -Bruno >> >> 2009/12/12 Jacques Le Roux <[hidden email]>: >>> >>> Hi Bruno, >>> >>> Yes sure it was designed with this in mind. It should be extended though. >>> Should be very simple, look for the javascript examples. I guess Googling >>> for mulit-points you should quickly find examples. >>> >>> Jacques >>> >>> From: "Bruno Busco" <[hidden email]> >>>> >>>> Hi devs, >>>> I have a list of recorded events, each one with its GPS coordinates, >>>> and I want to create a screen with a map (google ?) where they are >>>> shown. >>>> I know that in the OFBiz framework there is some geolocalization >>>> feature but I never used it. >>>> >>>> Do you think that the existing feature can be used to do what I want? >>>> Any pointer ? >>>> >>>> Many thanks, >>>> -Bruno >>>> >>> >>> >>> >> > > |
|
In reply to this post by byersa
Hi Al,
many thanks for the pointers. I found the getLocationURI(HttpServletRequest request) method in WfsEventHandler that is almost completely commented out. Is this the one you are referring to? Where can I read what it is supposed to do? The same for the RomeEventHandler. It seems not used anywhere. Any doc or even only few words describing the logic? Many thanks, -Bruno 2009/12/12 Al Byers <[hidden email]>: > Should have included this link: > http://googlemapsapi.blogspot.com/2007/03/kml-and-georss-support-added-to-google.html > > On Sat, Dec 12, 2009 at 12:52 AM, Al Byers <[hidden email]> wrote: >> Bruno, >> >> I did some work along these lines 2-3 years ago, but I can't find it, >> now. But I did add WfsEventHandler to work with Geoserver, I believe. >> It is probably more than you want right now. >> >> I also remember using the RomeEventHandler to implement GeoRSS and >> populated a Google map with markers that way. I would definitely look >> into GeoRSS (http://www.georss.org/Main_Page) to do what you want. >> >> Sorry I can't be of more help. >> >> -Al Byers >> >> On Fri, Dec 11, 2009 at 3:42 PM, Bruno Busco <[hidden email]> wrote: >>> Hi devs, >>> I have a list of recorded events, each one with its GPS coordinates, >>> and I want to create a screen with a map (google ?) where they are >>> shown. >>> I know that in the OFBiz framework there is some geolocalization >>> feature but I never used it. >>> >>> Do you think that the existing feature can be used to do what I want? >>> Any pointer ? >>> >>> Many thanks, >>> -Bruno >>> >> > |
|
Oh! I found this
http://issues.apache.org/jira/browse/OFBIZ-1208 still valid? 2009/12/12 Bruno Busco <[hidden email]>: > Hi Al, > many thanks for the pointers. > I found the getLocationURI(HttpServletRequest request) method in > WfsEventHandler that is almost completely commented out. > Is this the one you are referring to? > Where can I read what it is supposed to do? > > The same for the RomeEventHandler. It seems not used anywhere. Any doc > or even only few words describing the logic? > > Many thanks, > -Bruno > > > > 2009/12/12 Al Byers <[hidden email]>: >> Should have included this link: >> http://googlemapsapi.blogspot.com/2007/03/kml-and-georss-support-added-to-google.html >> >> On Sat, Dec 12, 2009 at 12:52 AM, Al Byers <[hidden email]> wrote: >>> Bruno, >>> >>> I did some work along these lines 2-3 years ago, but I can't find it, >>> now. But I did add WfsEventHandler to work with Geoserver, I believe. >>> It is probably more than you want right now. >>> >>> I also remember using the RomeEventHandler to implement GeoRSS and >>> populated a Google map with markers that way. I would definitely look >>> into GeoRSS (http://www.georss.org/Main_Page) to do what you want. >>> >>> Sorry I can't be of more help. >>> >>> -Al Byers >>> >>> On Fri, Dec 11, 2009 at 3:42 PM, Bruno Busco <[hidden email]> wrote: >>>> Hi devs, >>>> I have a list of recorded events, each one with its GPS coordinates, >>>> and I want to create a screen with a map (google ?) where they are >>>> shown. >>>> I know that in the OFBiz framework there is some geolocalization >>>> feature but I never used it. >>>> >>>> Do you think that the existing feature can be used to do what I want? >>>> Any pointer ? >>>> >>>> Many thanks, >>>> -Bruno >>>> >>> >> > |
|
Administrator
|
You may also look for GeoPoint in Jira and Wiki
Jacques From: "Bruno Busco" <[hidden email]> > Oh! I found this > http://issues.apache.org/jira/browse/OFBIZ-1208 > > still valid? > > > 2009/12/12 Bruno Busco <[hidden email]>: >> Hi Al, >> many thanks for the pointers. >> I found the getLocationURI(HttpServletRequest request) method in >> WfsEventHandler that is almost completely commented out. >> Is this the one you are referring to? >> Where can I read what it is supposed to do? >> >> The same for the RomeEventHandler. It seems not used anywhere. Any doc >> or even only few words describing the logic? >> >> Many thanks, >> -Bruno >> >> >> >> 2009/12/12 Al Byers <[hidden email]>: >>> Should have included this link: >>> http://googlemapsapi.blogspot.com/2007/03/kml-and-georss-support-added-to-google.html >>> >>> On Sat, Dec 12, 2009 at 12:52 AM, Al Byers <[hidden email]> wrote: >>>> Bruno, >>>> >>>> I did some work along these lines 2-3 years ago, but I can't find it, >>>> now. But I did add WfsEventHandler to work with Geoserver, I believe. >>>> It is probably more than you want right now. >>>> >>>> I also remember using the RomeEventHandler to implement GeoRSS and >>>> populated a Google map with markers that way. I would definitely look >>>> into GeoRSS (http://www.georss.org/Main_Page) to do what you want. >>>> >>>> Sorry I can't be of more help. >>>> >>>> -Al Byers >>>> >>>> On Fri, Dec 11, 2009 at 3:42 PM, Bruno Busco <[hidden email]> wrote: >>>>> Hi devs, >>>>> I have a list of recorded events, each one with its GPS coordinates, >>>>> and I want to create a screen with a map (google ?) where they are >>>>> shown. >>>>> I know that in the OFBiz framework there is some geolocalization >>>>> feature but I never used it. >>>>> >>>>> Do you think that the existing feature can be used to do what I want? >>>>> Any pointer ? >>>>> >>>>> Many thanks, >>>>> -Bruno >>>>> >>>> >>> >> > |
| Free forum by Nabble | Edit this page |
