Questions tagged [stamen-maps]

Stamen is a design and technology studio in San Francisco specializing in maps and data visualization. They have a number of open-sourced mapping projects available.

Stamen is a design and technology studio in San Francisco specializing in maps and data visualization. They have a number of open-sourced mapping projects available.

See

28 questions
0
votes
1 answer

How to properly combine a polygon map on top of a raster map in r?

I would like to combine a shapefile map of some US states on top of a raster map obtained from using library ggmap. This is the code I have library(USAboundaries) library(ggmap) library(ggplot2) library(sf) us.state.longlat <-…
Giuseppe Petri
  • 604
  • 4
  • 14
0
votes
0 answers

Unable to generate GGmaps / Stamenmaps in R

The data is Citi Bikes NYC data from January 2019 to December 2019, which can be viewed here: https://s3.amazonaws.com/tripdata/index.html You do not need to download the entire dataset you can download just one months The following is an example of…
0
votes
1 answer

Adding coordinates as points to a map in R

I have a dataframe of sightings and objects with their latitudes and longitudes: object = c("yacht", "fishingboat", "whale") long = c(-123.02676, -123.39763, -123.25103) lat = c(38.22033, 38.05059, 38.32280) df = cbind.data.frame(long, lat) I want…
Muhammad Kamil
  • 635
  • 2
  • 15
0
votes
0 answers

Plotting sf file ontop of ggmap

I've been trying to plot a rivers system over a ggmap and hitting a bunch of walls. Hopefully there is a good solution. Here is where I'm getting the rivers…
0
votes
0 answers

R ggmaps only loading a quarter of the map

Using ggmap to make a map of a lake. All the code works but the results only show a quarter of the map. I'm using: bbox<-c(left=152.4583,bottom=-32.4009,…
0
votes
1 answer

Error in Shiny while using stamen maps - "Object not found"

I am new to using Shiny and R programming in general. I was trying to create a Shiny app using stamen maps and used the function get_stamenmap with bounding box and other arguments. I assigned this function to a variable 'map' in the ggmap…
0
votes
0 answers

R ggmaps not loading map

I'm new to R following an online tutorial. However, my attempt is failing at a seemingly easy juncture: coords.map <- get_stamenmap(map_bounds, zoom = 7, maptype = "toner-lite") This command returns the error: could not find function…
Dan
  • 11
  • 4
0
votes
1 answer

How to invert the Toner layer in a Stamen map?

I am trying to invert the toner layer here, and maybe add a color tint to it as well as you can see here on Map Stack : http://mapstack.stamen.com/edit.html#toner[invert=1,tint=$1e88e5@100]/11/37.7547/-122.3513 Although, I'm not sure how would I use…
0
votes
1 answer

base_layer not showing in ggmap

I would like to as kfor any advice how to solve ggmap issue. lets suppose we have some spatial model and residuals and then we would like to plot it in the map. When using ggmap function I can see baseline background plot and regend for base_layer -…
Petr
  • 1,606
  • 2
  • 14
  • 39
0
votes
1 answer

How do I change the tile layer from OpenStreetMap to Stamen

I am trying to use Stamen maps with ngx-leaflet. The documentation for integrating leaftlet is here. I am not sure how to integrate it with ngx-leaflet. Is there a way to get a reference to the leaflet, L object in ngx-leaflet? Are there better ways…
Abrar Hossain
  • 2,594
  • 8
  • 29
  • 54
0
votes
0 answers

Add Layer to OpenLayers with Stamen "Burning Map"

as my title assert I would like to add a new "Burning" level of type stamen to my OpenLayers map. With others layer i.e watercolor/toner atc, it work, but not with Burning. My code for doing this is: var stamenLayers = new ol.layer.Group({ title:…
faienz93
  • 161
  • 2
  • 18
0
votes
1 answer

Adding different layers/labels to OSM Stamen map with QGIS

I am using the OSM OpenLayers plugin to use OSM Stamen (toner lite) basemap for a project I am doing on central London. I'd really like to add neighbourhood names from OSM as the only significantly visible location names are some large streets (e.g.…
the_t_test_1
  • 1,193
  • 1
  • 12
  • 28
0
votes
1 answer

How do I use stamen maps with the static google maps api?

I'd like to be able to use the stamen maps watercolor layer in conjunction with the static maps api from Google. I'm hoping this is simple but I'm not sure how to implement it... A static maps URL looks something like…
tomcritchlow
  • 785
  • 2
  • 11
  • 28
1
2