search for: getmap

Displaying 10 results from an estimated 10 matches for "getmap".

Did you mean: get_map
2011 Jun 07
1
RgoogleMaps Axes
...? ? ? ? ? ? ?LON =c(-122.225,-122.225,-122.075,-122.075,-122.025)), ? ? ? ? ? ? ? ? ? ?.Names=c("LAT","LON"),class="data.frame", ? ? ? ? ? ? ? ? ? ?row.names =c(1418L,1419L,1536L,1538L,1578L)) # Get bounding box. boxt <-qbbox(lat =datas$LAT,lon =datas$LON) MyMap<-GetMap.bbox(boxt$lonR,boxt$latR,destfile ="Arvin12Map.png", maptype ="mobile") PlotOnStaticMap(MyMap,lat =datas$LAT,lon =datas$LON, ? ? ? ? ? ? ? ? axes =TRUE,mar =rep(4,4)) When I run this on my computer the horizontal axis ranges from 300W to 60E, but the ticks in between aren't...
2009 Apr 14
2
routes with google maps API
Hi, I''m using mapstraction with Google Maps api and I want to use routes. As of now, mapstraction only supports mapquest API to do this, so can I use the underlying googlemaps API to do this, while using mapstraction? If yes, how? Btw, mapquest route demo doesn''t work (Error: MQA is not defined / Source File: http://mapstraction.com/mapstraction-js/mapstraction.js / Line: 621)
2010 Mar 19
1
error in map library
...dGDAL(destfile, silent = TRUE) : GeoTransform values not available > * I want to use that library because I intend to plot some station in a Brazilian map. I really appreciate any help. > > ===here what I was testing======== > library(rgdal) > > library(RgoogleMaps) > > GetMap(markers = > '40.702147,-74.015794,blues%7C40.711614,-74.012318,greeng%7C40.718217,-73.998284,redc', > destfile = "MyTile1.png"); > Read 1 item > [1] > "40.702147,-74.015794,blues%7C40.711614,-74.012318,greeng%7C40.718217,-73.998284,redc" > [1] " &g...
2008 Jul 19
1
Routes
...re'', :action=> ''index'' map.connect '''', :controller => "map" the map one in the middle works fine, the controller looks like this: (cut out all the irrelevant stuff) class MapController < ApplicationController def index @map = getmap end def getmap if params[''map''] then @map = params[''map''] end end end now, for the "share" one I cant for the life of me get any values out of class ShareController < ApplicationController def index if params[''f...
2009 Apr 09
1
Problem including panoramino with google
Hi, i cannot make panoramino work with my google map... I tried mapstraction.addOverlay(new GLayer("com.panoramio.all")); and this mapstraction.addOverlay("com.panoramio.all"); But all i can have is a 400 error response. I also need wikipedia data, but i get the same error code. Can someone help me ? -- Pascal
2009 Mar 23
4
Bird''s Eye integration in Mapstraction
Are there any plans to integrate Virtual Earth''s Bird''s Eye view to mapstraction? I tried an "integration hack" but then found out that there are too many issues involved (check whether birds eye is available for the current map area, disabling zoom controls,...). Has anyone else tried it? Franz
2010 Mar 17
0
In readGDAL(destfile, silent = TRUE) : GeoTransform values not available
Dear Ruser, I am trying to use the map library. But I have been problem the follow message. Warning message: *In readGDAL(destfile, silent = TRUE) : GeoTransform values not available * library(rgdal) library(RgoogleMaps) > GetMap(markers = '40.702147,-74.015794,blues%7C40.711614,-74.012318,greeng%7C40.718217,-73.998284,redc', destfile = "MyTile1.png"); Read 1 item [1] "40.702147,-74.015794,blues%7C40.711614,-74.012318,greeng%7C40.718217,-73.998284,redc" [1] " http://maps.google.com/staticmap...
2011 Sep 15
0
RGoogleMpas error
...), size = c('tiny','tiny','tiny'), col = c('blue', 'green', 'red'), char = c('','','')); #get the bounding box: bb <- qbbox(lat = mymarkers[,"lat"], lon = mymarkers[,"lon"]) #download the map: MyMap <- GetMap.bbox(bb$lonR, bb$latR, destfile = "DC.png", GRAYSCALE =T, markers = mymarkers); #determine the max zoom, so that all points fit on the plot # (not necessary in this case): zoom <- min(MaxZoom(latrange=bb$latR,lonrange=bb$lonR)); #plot: png("OverlayTest.png",640,640); tmp <...
2012 Mar 16
1
ggmap crash
...iteLat = c(as.numeric(rmc$latitude)) > siteLon = c(as.numeric(rmc$longitude)) > sites <- as.data.frame(cbind(siteLat, siteLon, '')) > lats <- c(floor(min(siteLat))-10, ceiling(max(siteLat))+10) > lons <- c(floor(min(siteLon))-10, ceiling(max(siteLon))+10) > map <- GetMap.bbox(c(min(siteLon)-5, max(siteLon)+5), c(min(siteLat)-5, max(siteLat)+5), maptype='satellite') [1] "http://maps.google.com/maps/api/staticmap?center=53.277508,-9.011888&zoom=5&size=640x640&maptype=satellite&format=png32&sensor=true" > lonr <- c(map$BBOX$...
2009 Feb 09
15
Mapstraction v2 architecture demo - work in progress
Hi guys, Been working on this over the past few evenings and, although it''s not actually working yet, I thought I''d give you a first glance. The core mapstraction stuff is about 1800 lines with the Google implementation code adding another 500. Original mapstraction is 5353 lines so we''re looking at 5800 for this version if you were to include all provider