diff --git a/examples/extmap-main.html b/examples/extmap-main.html
new file mode 100644
index 0000000000..16a6a4693b
--- /dev/null
+++ b/examples/extmap-main.html
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+ OpenLayers example
+
+
+ External map window test case
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/examples/extmap-map.html b/examples/extmap-map.html
new file mode 100644
index 0000000000..0b02d97932
--- /dev/null
+++ b/examples/extmap-map.html
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/examples/extmap.js b/examples/extmap.js
new file mode 100644
index 0000000000..fc770a9c15
--- /dev/null
+++ b/examples/extmap.js
@@ -0,0 +1,13 @@
+ var map = new ol.Map({
+ target: 'map',
+ layers: [
+ new ol.layer.Tile({
+ source: new ol.source.OSM()
+ })
+ ],
+ view: new ol.View({
+ center: ol.proj.fromLonLat([37.41, 8.82]),
+ zoom: 4
+ })
+ });
+
\ No newline at end of file