OpenLayers2에서는 basemap으로 google map을 설정할 수 있도록 지원하고 있으나 OpenLayers 3(통상 ol이라고 부르는 ol3이상의 버전)부터는 지원하지 않는다. 예를 들면 이런 식. OpenLayers2 var map = new OpenLayers.Map('map_target_element', { projection: 'EPSG:3857', // google map srs layer: new OpenLayers.Layer.Google( "Google Streets" // the default ), center: new OpenLayers.LonLat(x, y), // x, y coords must be epsg:3857 zoom: 5 }); Default는 google str..