Open Street Map Server for EPSG:4326 - openstreetmap

I would like to use the EPSG:4326 CRS in my leaflet app as I have a lot of WMS layers that are only available in EPSG:4326.
So, I'm looking for a tile service in EPSG:4326. But it seems like all the X/Y/Z links I am finding are in EPSG:3857.

Check out http://www.mapproxy.org, which would allow you to reproject OSM tiles on the fly.

Currently I do not believe that OSM has a server serving out tiles in EPSG:4326

Leaflet supports EPSG:4326 as well. See the documentation. You should probably try something like this:
L.map("id", {crs: L.CRS.EPSG4326});

Related

Google Earth Web/Online WMS

I am trying to add a WMS service to Google Earth Web/Online: https://earth.google.com/web
I tried importing a .kml file that works in the desktop version of GE but had no success. I also tried adding a tile overlay, which failed as well. I could not find any recommendations for working with WMS services in the google faq/ help docs or on the web. Has anyone been successful with this?
The WMS I would like to add: http://www.geoportal.rlp.de/mapbender/php/wms.php?layer_id=61675&REQUEST=GetCapabilities&VERSION=1.1.1&SERVICE=WMS&withChilds=1
WMS overlays currently work in Google Earth Pro, but they do not work in Earth v9.x (web & mobile apps) at this time.
But in Earth for web, you should be able to add a Tile Layer that loads a set of Google Map Tiles (the same tile format as you would use with the Google Maps Platform / Maps API). You need the URL for the tile layer, with the appropriate $[x], $[y] and $[level] variables (note "level" instead of "z"). You'll also want to add the N/S/E/W tile extent coordinates. And I believe it only supports 256x256 tiles at this time. Let us know how you're trying to add a tile layer, and we can try to debug that.

I can not understand how to use OSM Bright without tiles host

I have the following problem. I want to use osm bright, but I can’t understand how to do this. I found only how to use a standard OSM tiles skin:
https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
Maybe you know a way how to connect the Bright version in the same way?

How to render OSM tiles

I would like to setup a tiles server.
I found some documentation on the net and followed this tutorial.
Now it seems like I have a well configured server with a small map (Guyana) in my database, that's cool !
But now, I still don't understand how to get and configure an interface to display my map...
The tutorial suggests and give some links to OpenLayers and Leaflet but it seems to use online maps but I want to render my local files.
Also, the tutorial say that "mapnik" is what does the rendering, but no idea how to use it !
I'm using Ubuntu 14.04, apache2, Mod_tile, renderd, mapnik, osm2pgsql and a postgresql/postgis database in virtualbox.
If you have some tips you're welcome ! Thanks
If you already imported a shapefile to a PostGIS database, you can create a style or use the OSM default style with the Mapbox Studio or TIlemill tool and then import to a mapnik.xml file.
With the mapnik style file, you can follow the guide to serve the tiles using Renderd and mod_tile.
If you can call browse to http://yourserveraddress/osm_tiles/0/0/0.png and see the world tile without problems your Tile Server has been configured correctly, if not something went wrong.
After this, you can use frontend frameworks like Leaflet following this guide.
A good way to learn more about the OSM world is to create your own API by the OSM API repository.

Using OpenStreet map in website with LeafletJS to display heapmap

Is it possible to download OSM or embed OSM and use leafletjs on top of it to display heat map?
I have searched a lot and could not find anything related. I wanted something like this form Google Maps.
https://developers.google.com/maps/documentation/javascript/examples/layer-heatmap
I did find the mapbox but we need to pay them. I need something open source.
Please suggest me.
You can create heatmaps with Leaflet by using the various available plugins:
http://leafletjs.com/plugins.html#heatmaps
However, you'll need some vector data to build a heatmap, not just the tilelayer. If you want to use OpenStreetMap to get your data, try a service like http://overpass-turbo.eu/ to download the things you want in this format.

How to add Mapbox basemap to leaflet?

I am using the Leaflet example of mapping points from CSV. But I want to use my mapbox basemap.
https://github.com/perrygeo/leaflet-simple-csv
I am new to leaflet. Any help much appreciated.
You can pass Leaflet a URL to the map's TileJSON endpoint. Here's a basic template as well as some more documentation on Mapbox's API.
http://{s}.tiles.mapbox.com/v3/user.map-id/{z}/{x}/{y}.png