Re: [R] interactive Map: Popups

2015-07-24 Thread Marie-Louise
You guys are awesome thank you all very very much! -- View this message in context: http://r.789695.n4.nabble.com/interactive-Map-Popups-tp4710226p4710295.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing l

Re: [R] interactive Map: Popups

2015-07-23 Thread daniel
Marie-Louise, As long sa I know you have to gie googleVis the ISO code for provinces. GR <- data.frame( ISO = c("DE-BW", "DE-BY", "DE-BE", "DE-BB", "DE-HB", "DE-HH", "DE-HE", "DE-MV", "DE-NI", "DE-NW", "DE-RP", "DE-SL", "DE-SN", "DE-ST", "DE-SH", "DE-TH"), name = c("Baden-Württemberg", "Bayern",

Re: [R] interactive Map: Popups

2015-07-23 Thread Erich Neuwirth
Some shapefiles for Germany can be found here http://www.statsilk.com/maps/download-free-shapefile-maps > On Jul 23, 2015, at 21:36, Erin Hodgess wrote: > > Hello Erich: > > I just looked at your leaflet package and its examples. It

Re: [R] interactive Map: Popups

2015-07-23 Thread Marie-Louise
Thank you both very much for your tips, and excuse my horrible english skills. R is new to me so I tried to work with code that was already there. I managed to get close to what I wanted with require(googleVis) G4 = gvisGeoChart(con2, locationvar = "DE", col

Re: [R] interactive Map: Popups

2015-07-23 Thread Greg Snow
You might be interested in the HWidentify and HTKidentify functions in the TeachingDemos package. They currently don't do maps, but since the functions are pure R code it would not be hard to modify them. On Wed, Jul 22, 2015 at 5:35 PM, Marie-Louise wrote: > Hello, > I am trying to build a map

Re: [R] interactive Map: Popups

2015-07-23 Thread Erich Neuwirth
I am quite happy with that package leaflet which is not yet on CRAN but available on Githib. https://github.com/rstudio/leaflet signature.asc Description: Message signed with OpenPGP using GPGMail __ R-help@r-proje

Re: [R] interactive Map: Popups

2015-07-22 Thread MacQueen, Don
I would start by looking at the "Graphics" and "Web Technologies" entries in "Task Views" on CRAN. In addition, I suspect there might be some packages listed in the Spatial task view that could do this. -Don -- Don MacQueen Lawrence Livermore National Laboratory 7000 East Ave., L-627 Livermore,

[R] interactive Map: Popups

2015-07-22 Thread Marie-Louise
Hello, I am trying to build a map of a country which shows informations to its regions in a popup window as soon as someone clicks on a region. Thank you -- View this message in context: http://r.789695.n4.nabble.com/interactive-Map-Popups-tp4710226.html Sent from the R help mailing list archi