Maptiler
Maptiler is a mapping platform offering visual tools, global data, SDKs, and APIs for enterprise application development.
Websites Using Maptiler
No websites detected yet. Analyze a website to contribute data.
What Is Maptiler?
Maptiler is a maps platform that provides vector and raster map tiles, a JavaScript mapping SDK, geocoding, and hosting for custom maps. It gives developers an alternative to the largest mainstream mapping providers, with a strong emphasis on open data (such as OpenStreetMap), customizable map styling, and the flexibility to use Maptiler's hosted cloud service or self-host the same tiles and tools. In short, Maptiler supplies the building blocks needed to put an interactive, branded map onto a website or application.
Maptiler is recognized as one of the established independent players in the web-mapping ecosystem, a space dominated by a few large providers but with healthy demand for open-data-friendly, customizable, and self-hostable options. The company is also well known for its desktop tile-generation software, which historically gave it the "Maptiler" name, and it has grown into a full cloud platform offering tiles, styles, and APIs. Its appeal centers on giving developers control over map appearance and data sources without being locked into a single proprietary provider.
The platform is offered primarily as a cloud service (Maptiler Cloud) on a usage-based model, with both free and paid tiers, and it provides downloadable data and server software for organizations that prefer to self-host. Maps are delivered to websites through Maptiler's CDN and APIs, and rendered in the browser by a mapping SDK. Maptiler also embraces and helps maintain open standards in the vector-tile space, which is part of why its tiles and styles interoperate with the broader open mapping ecosystem.
Maptiler is not a browser extension or a plugin you install into a CMS. It is a combination of hosted services (tiles, styling, geocoding) and a client-side rendering library that a developer integrates into a web page or app. Because the map is fetched from Maptiler's servers and rendered by a recognizable SDK, Maptiler usage is identifiable from the outside by inspecting the network requests and scripts a page uses to draw its map.
It helps to place Maptiler in context. Modern web maps are typically built from three ingredients: a source of map data and tiles, a rendering library that draws those tiles interactively in the browser, and optional services like search (geocoding) and routing. Maptiler can supply all three, but it is especially associated with the first two, high-quality vector tiles built largely on open data, and an SDK to render and style them. This composability means a developer can use Maptiler tiles with Maptiler's own SDK, or mix Maptiler tiles with other open-source rendering libraries, which is a deliberate design choice that distinguishes it from more closed, all-in-one mapping platforms.
How Maptiler Works
Maptiler's foundation is vector tiles. Instead of shipping pre-rendered image tiles for every zoom level, vector tiles deliver the underlying geographic data (roads, water, labels, boundaries) as compact vector data that the browser renders on the fly. This makes maps sharp at any zoom and screen density, enables smooth zooming and rotation, and, crucially, allows the map's appearance to be restyled without regenerating images. Maptiler builds these tiles largely from open data sources like OpenStreetMap and serves them from its cloud.
Rendering happens client-side through Maptiler's SDK, a JavaScript library (built on the widely used open-source vector rendering technology in this space) that draws the vector tiles in the browser using the GPU. A developer initializes a map in a container element, points the SDK at a Maptiler style and an API key, and the library handles fetching tiles, rendering, panning, zooming, and adding markers, popups, and data layers. Because the rendering is GPU-accelerated and vector-based, interactions feel fluid and the map can be heavily customized.
Map styling is a defining capability. Maptiler provides a range of ready-made styles (streets, satellite hybrid, outdoor, dark, and more) and a visual editor for creating custom styles, controlling colors, fonts, layer visibility, and branding. Styles are expressed as a JSON style specification compatible with the open vector-tile ecosystem, so the same style can drive the map across web and mobile. This is what lets organizations produce a map that matches their brand rather than the generic look of a default provider.
Beyond tiles and rendering, Maptiler offers complementary APIs: geocoding (turning addresses and place names into coordinates and vice versa), static map images, elevation data, and dataset hosting so developers can upload and serve their own geographic data. On the delivery side, tiles and assets are served through Maptiler's CDN with API-key-based access, which keeps maps fast globally and ties usage to an account.
For organizations with strict data-residency, offline, or cost requirements, Maptiler supports self-hosting. The same vector tiles and tools that power the cloud can be downloaded and served from a customer's own infrastructure using Maptiler's server software, so the map data lives entirely within the organization's environment. This dual model, use the hosted cloud for convenience or self-host for control, is a core part of Maptiler's positioning and a key differentiator from providers that only operate as closed cloud services.
A typical integration flows like this: a developer signs up for an API key, chooses or designs a style, includes the Maptiler SDK on the page, and initializes a map pointed at the chosen style URL with the key. When a visitor loads the page, the SDK requests the style definition and the relevant vector tiles from Maptiler's CDN, renders the map on a canvas, and continues fetching tiles as the user pans and zooms. Any geocoding searches or data overlays make additional API calls. This request-and-render pattern, executed against Maptiler-owned endpoints, is exactly what makes the platform identifiable from the outside.
How to Tell if a Website Uses Maptiler
Maptiler leaves recognizable fingerprints in a page's scripts and network traffic. Because StackOptic analyzes a URL from the server side, it inspects the same kinds of signals you can check yourself with browser tools, curl, or a detection extension. Maptiler is a client-side SDK plus hosted tile and API services, so the most reliable tells are script references and network requests rather than server headers.
Maptiler API and tile domains. The strongest signal is requests to Maptiler-owned hosts. Maps fetch styles, tiles, fonts, and sprites from Maptiler's domains (commonly under maptiler.com, including its API and CDN subdomains), typically with an API-key query parameter. Seeing tile or style requests to a Maptiler domain is a dependable indicator.
The Maptiler SDK script. Pages load the Maptiler SDK JavaScript (and its accompanying CSS) from Maptiler's CDN or a package bundle. A script reference to the Maptiler SDK, or its initialization code in the page, points clearly to the platform.
Style URLs with API keys. Maptiler maps are initialized with a style URL that references a Maptiler style and includes a key= parameter. Finding a Maptiler style URL in the page source or network requests is a strong, specific signal.
Canvas-based map rendering and attribution. Vector maps render onto an HTML canvas element, and Maptiler maps display attribution that typically credits Maptiler and OpenStreetMap. A canvas map with Maptiler/OpenStreetMap attribution reinforces detection.
Here is how to check each signal yourself:
| Method | What to do | What Maptiler reveals |
|---|---|---|
| View Source | Right-click, "View Page Source" | Maptiler SDK script tags, style URLs with a key= parameter |
| Browser DevTools | Open the Network tab and pan/zoom the map | Tile, style, sprite, and font requests to Maptiler domains |
| curl -s | curl -s https://example.com | grep -i maptiler | Inline Maptiler SDK references and style URLs in the static HTML |
| Wappalyzer | Run the extension on the live page | Identifies "MapTiler" under maps or JavaScript libraries |
| Inspect attribution | Look at the small credit text on the map | "Maptiler" and "OpenStreetMap" attribution links |
A quick command-line check is curl -s https://example.com | grep -i "maptiler". If that returns SDK or style-URL references, the page is very likely using Maptiler. Because map tiles load progressively as you interact, the Network tab is especially revealing: pan and zoom and watch where the tile requests go. For broader methodology, see our guides on how to find out what technology a website uses and how to check what javascript libraries a website uses.
It is worth understanding how these signals behave in practice. Because Maptiler shares the open vector-tile rendering technology used by several mapping tools, the rendering library and canvas-based output can look similar across providers; what disambiguates Maptiler is the destination of the tile and style requests and the presence of Maptiler style URLs and attribution. Some sites proxy tile requests through their own domain to hide the upstream provider or to manage keys, which can mask the obvious Maptiler hostname, in those cases the style structure, sprite and font endpoints, and attribution text remain useful clues. A self-hosted Maptiler deployment will serve tiles from the organization's own domain rather than Maptiler Cloud, so detecting Maptiler there depends more on the SDK, the style specification, and the data characteristics than on a Maptiler domain. Combining several signals, an SDK script, tile requests to a Maptiler endpoint, and Maptiler/OpenStreetMap attribution, makes the conclusion reliable even on customized maps. Server-side analysis helps by fetching the raw HTML directly and surfacing inline SDK and style references that a heavily scripted page might otherwise obscure.
Key Features
- Vector tiles. Crisp, restylable maps built largely on open data and rendered on the fly at any zoom and screen density.
- Mapping SDK. A GPU-accelerated JavaScript library for rendering, interaction, markers, popups, and data layers.
- Custom map styling. Ready-made styles plus a visual editor and an open style specification for fully branded maps.
- Geocoding and APIs. Address and place search, static maps, elevation, and dataset hosting.
- Global CDN delivery. Tiles and assets served quickly worldwide with API-key-based access.
- Self-hosting option. Downloadable tiles and server software for on-premise, offline, or data-residency needs.
- Open-standard compatibility. Tiles and styles interoperate with the broader open vector-tile ecosystem.
Pros and Cons
Pros
- Strong customization and branding through an open, restylable style specification.
- Open-data foundation and standards compatibility reduce lock-in compared with closed providers.
- Flexible deployment: use the hosted cloud or self-host the same tiles and tools.
- Usage-based pricing with a free tier suits projects of many sizes.
Cons
- Smaller brand recognition and ecosystem than the largest mainstream mapping providers.
- Some specialized data and services (advanced routing, certain POI depth) may be less extensive than the biggest platforms.
- Self-hosting high-quality tiles requires storage, bandwidth, and operational effort.
- As a hosted dependency, cloud maps rely on a third-party service and API-key management.
Maptiler vs Alternatives
Maptiler competes with both the large mainstream mapping platforms and the open-source mapping stack. The table below clarifies where it fits.
| Provider | Data model | Hosting | Best for |
|---|---|---|---|
| Maptiler | Vector tiles on open data, restylable | Cloud or self-hosted | Custom-branded maps wanting openness and flexibility |
| Google Maps Platform | Proprietary data and rendering | Cloud only | Rich POI data and familiar UX, deep ecosystem |
| Mapbox | Vector tiles, proprietary and open data | Cloud (with some self-host) | Highly designed maps and developer tooling |
| OpenStreetMap + open-source stack | Open data, self-assembled | Self-hosted | Full control and zero vendor dependency |
| HERE / others | Proprietary data | Cloud | Automotive, logistics, and enterprise mapping |
If a site turns out to use a different mapping provider, the same network-inspection techniques reveal it by the tile and SDK domains involved. You can compare Maptiler with the open mapping ecosystem in our profile of OpenStreetMap, or learn the general approach in how to check what javascript libraries a website uses.
Use Cases
Maptiler is most at home wherever a website or app needs an interactive, customizable map and the team values open data, branding control, or the option to self-host. Companies building store locators, real-estate listings, travel and outdoor apps, and data-visualization dashboards use Maptiler to render maps that match their design rather than a generic default look.
It also fits organizations with data-residency or offline requirements that need to self-host tiles, developers who want to combine open-source rendering with reliable hosted tiles, and analytics or GIS products that overlay custom datasets on a base map. For technology research, detecting Maptiler signals a team that has made a deliberate, often cost- or openness-driven choice about mapping rather than reaching for the default provider.
Consider a few concrete scenarios. A property platform might use Maptiler to show listings on a branded map styled to match its site, with custom markers and clustering for dense urban areas. An outdoor-recreation app might choose Maptiler's outdoor and satellite styles and its elevation API to render trail maps, and may self-host tiles to support offline use in the field. A public-sector or enterprise dashboard with strict data-residency rules might self-host Maptiler tiles entirely within its own infrastructure while still benefiting from modern vector rendering. In each case the common thread is a need for control, over appearance, data, or hosting, that a closed, all-in-one provider does not fully satisfy.
From a competitive-intelligence standpoint, identifying Maptiler on a site is a useful signal. It suggests a development team comfortable with the modern vector-mapping stack and inclined toward open, flexible tooling, often to control costs or branding. For vendors selling developer or geospatial products, that profile helps qualify and tailor outreach; for analysts mapping the web-mapping market, Maptiler detection across many domains shows which organizations have adopted independent, open-data-friendly providers over the mainstream giants. Surfacing that signal automatically across many domains is exactly the kind of insight a technology-detection tool is designed to deliver, and it pairs naturally with understanding what technology a website uses more broadly.
Frequently Asked Questions
Is Maptiler a Google Maps alternative?
Yes, Maptiler is one of the independent alternatives to the large mainstream mapping platforms. It provides vector and raster tiles, a rendering SDK, styling tools, and geocoding, with a strong emphasis on open data and customization. Where Google Maps offers proprietary data and a familiar all-in-one cloud service, Maptiler emphasizes restylable maps built largely on open data and the option to self-host, which appeals to teams that want more control over appearance, data, and hosting.
Can you tell if a site uses Maptiler for free?
Yes. Open the page source and search for Maptiler SDK references or style URLs (which include a key= parameter), then open DevTools, go to the Network tab, and pan or zoom the map to watch for tile and style requests to Maptiler domains. The small attribution text on the map usually credits Maptiler and OpenStreetMap. Tools like Wappalyzer confirm it, and a single curl -s URL | grep -i maptiler command works from any terminal.
What are vector tiles and why do they matter?
Vector tiles deliver the underlying map data, roads, water, labels, boundaries, as compact vector data that the browser renders on the fly, rather than as pre-rendered image tiles. This keeps maps crisp at any zoom and screen density, enables smooth zooming and rotation, and allows the map's appearance to be restyled without regenerating images. Maptiler builds its vector tiles largely from open data and serves them so developers can style and render them flexibly.
Does using Maptiler slow down my website?
Like any mapping library, the Maptiler SDK and its tiles add JavaScript and network requests, so the impact depends on how the map is loaded. Best practice is to load the SDK efficiently, initialize the map only where needed, and let tiles stream in as the user interacts. Vector rendering is GPU-accelerated and generally performant, but on map-heavy pages it is worth following the techniques in our guide on how to make your website load faster to keep the experience smooth.
Can Maptiler be self-hosted?
Yes. In addition to the Maptiler Cloud service, Maptiler offers downloadable map data and server software so organizations can host the same vector tiles and tools entirely on their own infrastructure. This suits teams with data-residency, offline, or cost requirements that prefer not to depend on a third-party cloud. A self-hosted deployment serves tiles from the organization's own domain, which is why detecting it relies more on the SDK and style specification than on Maptiler's cloud domains.
Want to identify Maptiler and the rest of a site's technology stack automatically? Run any URL through StackOptic at https://stackoptic.com.
Alternatives to Maptiler
Compare Maptiler
Analyze a Website
Check if any website uses Maptiler and discover its full technology stack.
Analyze Now