Choose from one of our professionally designed maps for your application or project. You can also look further in the official Map Tile API documentation and example pages.
POS-Eye Smart but simple localization software for your website.
POS-Eye is a modern and flexible service of the point of sale search engine, which can be integrated with any website. Help find places where customers can buy your product or use services. Adding new or managing existing locations is very easy thanks to the POS-Manager application. You can also use your solution and we will integrate it.
A simple and real-time service aimed at improving the address when it is entered. API can be integrated in browser-based applications, online forms or thin-client environments. Is designed to handle a huge number of queries with a reliable response time.
var iconFeature = new ol.Feature({
geometry: new ol.geom.Point(ol.proj.fromLonLat([_lat, _lon]))
});
var iconStyle = new ol.style.Style({
image: new ol.style.Icon(({
anchor: [0.5, 46],
anchorXUnits: 'fraction',
anchorYUnits: 'pixels',
src: 'https://placematic.pl/pin_map.png'
}))
});
iconFeature.setStyle(iconStyle);
var vectorSource = new ol.source.Vector({
features: [iconFeature]
});
var vectorLayer = new ol.layer.Vector({
source: vectorSource
});