Quick and dirty test of the WMS capabilities of the new MapBox-gl-js 0.5.2 API. First of all, yes ! it is possible to overlay (legacy) WMS over the vector WebGL rendered base map and with right mouse click it rotates (try it)... however the way is not straightforward:
Needs some 'hacks' as current version of the API doesn't have enough events to supply custom URL before it is loaded. But check latest version of mapbox, it might have better support for this.
Another issue is that WMS server has to provide HTTP header with Access-Control-Allow-Origin:* to avoid WebGL CORS failure when loading image (gl.texImage2D). Usually WMS servers don't care about this, as for normal img tags CORS doesn't apply. Here WebGL has access to raw image data so WMS provider has to explicitly agree with this.
Build process of mapbox-gl-js tend to be as many other large js projects complicated, slow, complex. And specifically on Windows platform it is more difficult to get mapbox-gl-js install and build running then on Mac.
Code is documented to guide you through the process.
// -- rutine originaly found in GlobalMercator.js, simplified
// -- calculates spherical mercator coordinates from tile coordinates
function tileBounds(tx, ty, zoom, tileSize) {
function pixelsToMeters(px, py, zoom) {
var res = (2 * Math.PI * 6378137 / 256) / Math.pow(2, zoom),
originShift = 2 * Math.PI * 6378137 / 2,
x = px * res - originShift,
y = py * res - originShift;
return [Math.abs(x), Math.abs(y)];
};
var min = pixelsToMeters(tx * tileSize, ty * tileSize, zoom),
max = pixelsToMeters((tx + 1) * tileSize, (ty + 1) * tileSize, zoom);
return min.concat(max);
}
// -- save orig _loadTile function so we can call it later
// -- there was no good pre-load event at mapbox API to get hooked and patch url
// -- we need to use undocumented _loadTile
var origFunc = sourceObj._loadTile;
// -- replace _loadTile with own implementation
sourceObj._loadTile = function (id) {
// -- we have to patch sourceObj.url, dirty !
// -- we basically change url on the fly with correct BBOX coordinates
// -- and leave rest on original _loadTile processing
var origUrl =sourceObj.tiles[0]
.substring(0,sourceObj.tiles[0].indexOf('&BBOX'));
var origUrl = origUrl +"&BBOX={mleft},{mbottom},{mright},{mtop}";
sourceObj.tiles[0] = patchUrl(id, [origUrl]);
// -- call original method
return origFunc.call(sourceObj, id);
}
[enjoy] 3
Modified http://www.sumbera.com/gist/js/mapbox/dist/mapbox-gl.js to a secure url
Modified http://www.sumbera.com/gist/js/mapbox/mbstyles/hybrid.js to a secure url
https://www.sumbera.com/gist/js/mapbox/dist/mapbox-gl.js
https://www.sumbera.com/gist/js/mapbox/mbstyles/hybrid.js