Questions tagged [maptiler]

MapTiler is an application creating map tiles for rapid raster map publishing with Leaflet, OpenLayers, and Google Maps API.

MapTiler is an application creating map tiles for rapid raster map publishing.

MapTiler converts raster maps, images and geodata into a format suitable for JavaScript web applications, mobile devices and 3D visualisation. It provides the easiest way how to prepare raster geodata for mashups, apps and for Google Earth, Leaflet, OpenLayers, Google Maps API, etc. It produces either a a folder with tiles and simple HTML viewer or the MBTiles archive.

73 questions
7
votes
1 answer

Google Maps API V3 - Custom Tiles

I am currently working on Google Maps API V3 over here If you zoom between 21 to 23, there will be an image overlay on the map. The image takes too long to load and I have decided to break it into different tiles for easier loading. I am using…
silverbtf
  • 193
  • 1
  • 2
  • 9
4
votes
1 answer

How to download map tiles for Leaflet?

I understand that this is a basic question; however, I've spent hours googling and have yet to find an answer that works. I have a javascript webapp that uses Leaflet to display a map. I can get it to work when the tile source URL is some online…
user3059217
  • 521
  • 1
  • 6
  • 9
4
votes
2 answers

AutoCAD drawing (DWG) to map tiles

Rendering large DWG files as such has shown performance degradation to large extent. Planning to use the concept of map tiles using leaflet. Need some pointers/information on how to convert DWG files to map tiles.
Shanadas
  • 515
  • 1
  • 6
  • 22
4
votes
1 answer

Tile generator from an image to Android Google Maps

This is my 1st question here, so lets move right to the point I have a map in high resolution png format with geographic coordinates of the corners which I would like to integrate with Google Maps Api in my Android App. What i have done so far: I…
Marcin Kunert
  • 5,596
  • 5
  • 26
  • 52
3
votes
0 answers

How to generate Map Tiles using OSM (Open Street Map) PBF files

I am developing a real estate web site and I need to have a map feature on it (obviously), this website won't be even close to exceeding the free threshold if I want to use google maps but I have decided I want to have my own map rendering feature…
Behrooz
  • 1,895
  • 4
  • 31
  • 47
2
votes
2 answers

React Native Maps UrlTile

I am trying to use openstreetmap tile in UrlTile but I am getting duplicate layers, openstreetmap and default google map, how can I remove google map layer? This is my component: import { StyleSheet, Text, View, Button } from "react-native"; import…
2
votes
1 answer

Leaftjs remove all current polygoones, and redraw all

I am working on a project, where I am using Leaftjs(1.6). And https://api.maptiler.com/maps/streets for tile layer. In the first time, the polygons are drawing correctly. In my site, I am using an input range, where user can change the input range,…
Shudipto Trafder
  • 1,932
  • 1
  • 14
  • 27
2
votes
1 answer

Creating mbtiles using Maptiler for OpenMapTiles

I create a mbfiles file using MapTiler and loaded it into OpenMapTiles. The files that I have loaded are from earthexplorer.usgs.gov and composed of several .tif files. Once I load the mbfiles into the server, I get the following…
ArmenB
  • 2,125
  • 3
  • 23
  • 47
2
votes
3 answers

Is there a way to extract geographical tags from a tiff image using javascript?

I am working on a project which requires me work with a orthomosaic map. This map is in .tiff format. I want to extract the geographical information from that map so that I can overlay it correctly on a google map. I am using mean stack for this…
mistletoe
  • 463
  • 4
  • 11
  • 29
2
votes
0 answers

What workflow should I follow to tile images in ImageMagick the same way MapTiler does for OL3?

If I'm using MapTiler to tile a raster image it seems to always provide a OL3 code that only uses resolutions of 2. I've tried to figure out how it does it, but I can't seem to find a formula for finding the right amount of tiles for each zoom…
taigi100
  • 2,609
  • 4
  • 23
  • 42
2
votes
1 answer

How to merge many VRT file into one

I have many VRT files generated using gdal_translate originally for adjacent images. Is there away to merge all those VRT file into one VRT file so that when I run gdal2tiles.py I only need to give it this one composite VRT file? I thought first…
user836026
  • 10,608
  • 15
  • 73
  • 129
2
votes
1 answer

Creating world file for maptiler

I have an image which 21810x14872 that project a box of an area with coordinate: top, left corner latitude longitude : 23.635069763547662 , 58.09107365049769 bottom, right corner latitude longitude : 23.598520470202025 , 58.14957297881731 OR…
user836026
  • 10,608
  • 15
  • 73
  • 129
2
votes
1 answer

Generate MapTiles from BSB/KAP files Using GDAL2Tiles

As an example I have a BSB file from NOAA which is a navigational map. The map has a SRS of WGS84 and a Mercator projection. I initially translate the file from BSB format to GTiff format using the following command: gdal_translate -of GTiff…
user914425
  • 16,303
  • 4
  • 30
  • 41
1
vote
0 answers

Map getting rendered only in localhost - Not displayed after app build process

I am working on a react application which have two maps (one leaflet+esri map and the other is maptiler). I have got the API keys for both, and it gets rendered properly in localhost environment. However, when I build and publish the site, the map…
Nuhman
  • 1,172
  • 15
  • 22
1
vote
1 answer

Combining MapLibre GL JS with ThreeLoader3dTiles

So the below code works to show a Cesium 3d tiles model. This code works. It creates a basic scene, loads the cesium model and adds it to the scene. import { useEffect, useRef, useState } from 'react'; import * as THREE from 'three'; import {…
John
  • 346
  • 1
  • 11
1
2 3 4 5