{"id":518,"date":"2019-08-19T19:23:23","date_gmt":"2019-08-19T17:23:23","guid":{"rendered":"https:\/\/www.smartsim.energy\/kontakt\/"},"modified":"2019-10-10T11:15:05","modified_gmt":"2019-10-10T09:15:05","slug":"contact","status":"publish","type":"page","link":"https:\/\/www.smartsim.energy\/en\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"<div class=\"linkedin-feed-section\">\n\t<div class=\"section-dot\"><\/div>\n\t<div class=\"section-title\">\n\t\t<h2>Contact us<\/h2>\t<\/div>\n\t<h2>Have we aroused your interest?<\/h2>\t<div class=\"large-text-block\">\n\t\t<div class=\"text\">\n\t\t\t<p class=\"p1\"><span class=\"s1\">We would be happy to talk to you personally about how our services can be of benefit to you. We look forward to hearing from you:<\/span><\/p>\n<p class=\"p1\"><span class=\"s1\"><a href=\"mailto:info@smartsim.energy\">info@smartsim.energy<\/a><\/span><\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"row\">\n\t\t<div class=\"col-12 col-lg-6\">\n\t\t\t<div class=\"contact-info\">\n\t\t\t\t<p><strong>Address<\/strong><br \/>\nSmartSim GmbH<br \/>\nAlfredstr. 81<br \/>\n45130 Essen<\/p>\n<p class=\"p1\"><span class=\"s1\">Managing Director: Dr. Peter Schley<br \/>\n<\/span><span class=\"s1\">Authorized Officers: Christan Fiebig, Dr. Andreas Hielscher, Dr. Stefan Rickelt<\/span><\/p>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t<div class=\"col-12 col-lg-6\">\n\t\t\t<div class=\"contact-map\">\n\t\t\t\t\t\t\t\t<div class=\"acf-map\">\n\t\t\t\t\t<div class=\"marker\" data-lat=\"51.434807801321654\" data-lng=\"7.0028903520374115\"><\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"acf-map-message d-flex align-items-center\"><p>Accept <a class=\"cli_manage_current_consent\">Google Maps<\/a> cookies to view the content.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<a href=\"https:\/\/www.google.com\/maps\/dir\/?api=1&#038;destination=SmartSim+GmbH%2C+Alfredstr.+81%2C+45130+Essen&#038;travelmode=driving\" class=\"button\" target=\"_blank\">Plan route<\/a>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n<script src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyBEK9BIhrGRJKjoiqRDHiQRoN2_OM6gcpk\"><\/script>\n<script type=\"text\/javascript\">\n(function($) {\n\n\/*\n*  new_map\n*\n*  This function will render a Google Map onto the selected jQuery element\n*\n*  @type\tfunction\n*  @date\t8\/11\/2013\n*  @since\t4.3.0\n*\n*  @param\t$el (jQuery element)\n*  @return\tn\/a\n*\/\n\nfunction new_map( $el ) {\n\t\n\t\/\/ var\n\tvar $markers = $el.find('.marker');\n\t\n\t\n\t\/\/ vars\n\tvar args = {\n\t\tzoom\t\t: 12,\n\t\tcenter\t\t: new google.maps.LatLng(0, 0),\n\t\tmapTypeId\t: google.maps.MapTypeId.ROADMAP,\n\t\tstyles: [{\"featureType\":\"landscape\",\"stylers\":[{\"saturation\":-100},{\"lightness\":60}]},{\"featureType\":\"road.local\",\"stylers\":[{\"saturation\":-100},{\"lightness\":40},{\"visibility\":\"on\"}]},{\"featureType\":\"transit\",\"stylers\":[{\"saturation\":-100},{\"visibility\":\"simplified\"}]},{\"featureType\":\"administrative.province\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"water\",\"stylers\":[{\"visibility\":\"on\"},{\"lightness\":30}]},{\"featureType\":\"road.highway\",\"elementType\":\"geometry.fill\",\"stylers\":[{\"color\":\"#ef8c25\"},{\"lightness\":40}]},{\"featureType\":\"road.highway\",\"elementType\":\"geometry.stroke\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"poi.park\",\"elementType\":\"geometry.fill\",\"stylers\":[{\"color\":\"#b6c54c\"},{\"lightness\":40},{\"saturation\":-40}]},{}]\n\t};\n\t\n\t\n\t\/\/ create map\t        \t\n\tvar map = new google.maps.Map( $el[0], args);\n\t\n\t\n\t\/\/ add a markers reference\n\tmap.markers = [];\n\t\n\t\n\t\/\/ add markers\n\t$markers.each(function(){\n\t\t\n    \tadd_marker( $(this), map );\n\t\t\n\t});\n\t\n\t\n\t\/\/ center map\n\tcenter_map( map );\n\t\n\t\n\t\/\/ return\n\treturn map;\n\t\n}\n\n\/*\n*  add_marker\n*\n*  This function will add a marker to the selected Google Map\n*\n*  @type\tfunction\n*  @date\t8\/11\/2013\n*  @since\t4.3.0\n*\n*  @param\t$marker (jQuery element)\n*  @param\tmap (Google Map object)\n*  @return\tn\/a\n*\/\n\nfunction add_marker( $marker, map ) {\n\n\t\/\/ var\n\tvar latlng = new google.maps.LatLng( $marker.attr('data-lat'), $marker.attr('data-lng') );\n\n\t\/\/ create marker\n\tvar marker = new google.maps.Marker({\n\t\tposition\t: latlng,\n\t\tmap\t\t\t: map,\n\t\ticon : new google.maps.MarkerImage(\"https:\/\/www.smartsim.energy\/wp-content\/themes\/smartsim-owx\/images\/marker@2x.png\", null, null, null, new google.maps.Size(40,40)),\n\t});\n\n\t\/\/ add to array\n\tmap.markers.push( marker );\n\n\t\/\/ if marker contains HTML, add it to an infoWindow\n\tif( $marker.html() )\n\t{\n\t\t\/\/ create info window\n\t\tvar infowindow = new google.maps.InfoWindow({\n\t\t\tcontent\t\t: $marker.html()\n\t\t});\n\n\t\t\/\/ show info window when marker is clicked\n\t\tgoogle.maps.event.addListener(marker, 'click', function() {\n\n\t\t\tinfowindow.open( map, marker );\n\n\t\t});\n\t}\n\n}\n\n\/*\n*  center_map\n*\n*  This function will center the map, showing all markers attached to this map\n*\n*  @type\tfunction\n*  @date\t8\/11\/2013\n*  @since\t4.3.0\n*\n*  @param\tmap (Google Map object)\n*  @return\tn\/a\n*\/\n\nfunction center_map( map ) {\n\n\t\/\/ vars\n\tvar bounds = new google.maps.LatLngBounds();\n\n\t\/\/ loop through all markers and create bounds\n\t$.each( map.markers, function( i, marker ){\n\n\t\tvar latlng = new google.maps.LatLng( marker.position.lat(), marker.position.lng() );\n\n\t\tbounds.extend( latlng );\n\n\t});\n\n\t\/\/ only 1 marker?\n\tif( map.markers.length == 1 )\n\t{\n\t\t\/\/ set center of map\n\t    map.setCenter( bounds.getCenter() );\n\t    map.setZoom( 12 );\n\t}\n\telse\n\t{\n\t\t\/\/ fit to bounds\n\t\tmap.fitBounds( bounds );\n\t}\n\n}\n\n\/*\n*  document ready\n*\n*  This function will render each map when the document is ready (page has loaded)\n*\n*  @type\tfunction\n*  @date\t8\/11\/2013\n*  @since\t5.0.0\n*\n*  @param\tn\/a\n*  @return\tn\/a\n*\/\n\/\/ global var\nvar map = null;\n\n$(document).ready(function(){\n\n\t$('.acf-map').each(function(){\n\n\t\t\/\/ create map\n\t\tmap = new_map( $(this) );\n\n\t});\n\n});\n\n})(jQuery);\n<\/script>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":25,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-518","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.smartsim.energy\/en\/wp-json\/wp\/v2\/pages\/518","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.smartsim.energy\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.smartsim.energy\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.smartsim.energy\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.smartsim.energy\/en\/wp-json\/wp\/v2\/comments?post=518"}],"version-history":[{"count":11,"href":"https:\/\/www.smartsim.energy\/en\/wp-json\/wp\/v2\/pages\/518\/revisions"}],"predecessor-version":[{"id":1186,"href":"https:\/\/www.smartsim.energy\/en\/wp-json\/wp\/v2\/pages\/518\/revisions\/1186"}],"wp:attachment":[{"href":"https:\/\/www.smartsim.energy\/en\/wp-json\/wp\/v2\/media?parent=518"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}