Example of a untiled MapGuide map.
<!DOCTYPE html> <html> <head> <title>MapGuide untiled example</title> <script src="https://code.jquery.com/jquery-1.11.2.min.js"></script> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> <link rel="stylesheet" href="http://openlayers.org/en/3.8.1/css/ol.css" type="text/css"> <script src="http://openlayers.org/en/3.8.1/build/ol.js"></script> </head> <body> <div class="container-fluid"> <div class="row-fluid"> <div class="span12"> <div id="map" class="map"></div> </div> </div> </div> <script> var mdf = 'Library://Samples/Sheboygan/Maps/Sheboygan.MapDefinition'; var agentUrl = 'http://data.mapguide.com/mapguide/mapagent/mapagent.fcgi?USERNAME=Anonymous'; var bounds = [ -87.865114442365922, 43.665065564837931, -87.595394059497067, 43.823852564430069 ]; var map = new ol.Map({ layers: [ new ol.layer.Image({ extent: bounds, source: new ol.source.ImageMapGuide({ projection: 'EPSG:4326', url: agentUrl, useOverlay: false, metersPerUnit: 111319.4908, //value returned from mapguide params: { MAPDEFINITION: mdf, FORMAT: 'PNG' }, ratio: 2 }) }) ], target: 'map', view: new ol.View({ center: [-87.7302542509315, 43.744459064634], projection: 'EPSG:4326', zoom: 12 }) }); </script> </body> </html>