New Jekyll Based Site
First version of the Jekyll site, and also introducing the new native maps backed.
The native map is based on the code from the project khtml.maplib, and it only requires a map tile server using 256x256 map tiles.
Example on how to generate the native map using OpenStreetMap tiles:
jsMaps.loader(function (){
var tiles = new jsMaps.Native.Tiles();
tiles.addTileLayer("http://{s}.tile.osm.org/{z}/{x}/{y}.png",['a','b','c'],'© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap contributors</a>.','OpenStreetMap');
var map = jsMaps.api.init(
'#map',
'native',
{
center: {
latitude: 32.078930,
longitude: 34.773241
},
zoom: 14,
mouse_scroll: true,
zoom_control: true,
map_type: true
},tiles
);
});
Check out the Examples to see what this backend is capable of.