CINXE.COM

NetIP.de - Geolocation for Internet services

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="robots" content="index,follow"> <meta name="page-type" content="html"> <meta name="publisher" content="Mediamixx Group"> <meta name="revisit-after" content="14 days"> <meta name="allow-search" content="yes"> <meta name="audience" content="All"> <meta name="siteinfo" content="https://www.netip.de/robots.txt"> <link rel="stylesheet" href="https://www.netip.de/styles/generic.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> <link type="image/x-icon" rel="icon" href="https://www.netip.de/favicon.ico"> <link type="image/x-icon" rel="shortcut icon" href="https://www.netip.de/favicon.ico"> <link type="application/opensearchdescription+xml" rel="search" title="Netip.de" href="https://www.netip.de/opensearch.xml"> <title>NetIP.de - Geolocation for Internet services</title> <meta name="keywords" content="IP, TCP, Internet Protocol, Transmission Control Protocol, Whois, DNS, Tracert, Ping, Traceroute, Routing, Address, Hostname, Network, Netclass, Internet protocol, Subnetmask"> <meta name="description" content="Determines the server location of an internet address. It shows you the country, the region and the city from a network name or address. Here you get more information about this server address."> <script> const html = '%3Cdiv%20class%3D%22balloon%22%3E%0A%20%20%20%20%20%20%20%20%3Cimg%20class%3D%22flag%22%20src%3D%22https%3A%2F%2Fwww.netip.de%2Fimages%2Fflag%2Fsg.gif%22%20width%3D%2232%22%20height%3D%2220%22%3E%20%20%20%20%20%20%20%20Singapur%20%20%3Cbr%3E%0A%20%20%20%20%20%20%20%20IP%3A%20%3Ca%20href%3D%22%2F%2Fwww.netip.de%2Ftracert%3Fhost%3D8.222.208.146%22%3E8.222.208.146%3C%2Fa%3E%3Cbr%3E%0A%20%20%20%20%20%20%20%20Host%3A%208.222.208.146%0A%3C%2Fdiv%3E%0A'; const json = '%7B%22latitude%22%3A1.3673%2C%22longitude%22%3A103.8014%2C%22country_code%22%3A%22SG%22%2C%22country_code3%22%3Anull%2C%22country_name%22%3A%22Singapur%22%2C%22region_name%22%3Anull%2C%22city%22%3Anull%2C%22postal_code%22%3Anull%2C%22area_code%22%3Anull%2C%22ip_address%22%3A%228.222.208.146%22%2C%22domain_name%22%3A%228.222.208.146%22%2C%22hostname%22%3A%228.222.208.146%22%7D'; const obj = JSON.parse(unescape(json)); </script> <script src="https://unpkg.com/maplibre-gl@5.3.0/dist/maplibre-gl.js" integrity="sha256-44DerlYLxdGCvkEkobnN1QhjBLDLgskqWvI9AYqoEBU=" crossorigin="anonymous"></script> <link rel="stylesheet" href="https://unpkg.com/maplibre-gl@5.3.0/dist/maplibre-gl.css" integrity="sha256-eSrJl9z2rm9kPrTi3uRjDIXnBWUmvY+4X/6Dxn1sQbQ=" crossorigin="anonymous"> <script> function detectWebGLContext() { // Create canvas element. The canvas is not added to the // document itself, so it is never displayed in the browser window. const canvas = document.createElement("canvas"); // Get WebGLRenderingContext from canvas element. const gl = canvas.getContext("webgl") || canvas.getContext("experimental-webgl"); // Report the result. return (gl && gl instanceof WebGLRenderingContext); } function GeoMap2() { if( detectWebGLContext() === false ) return; const zoom = 4; const pos = [obj.longitude, obj.latitude]; const map = new maplibregl.Map({ container: 'map', // style: 'https://tiles.versatiles.org/assets/styles/colorful/style.json', // style: 'https://www.netip.de/map/my/colorful.de.json', style: 'https://www.netip.de/colorful.de.json', center: pos, zoom: zoom, minZoom: 3, maxZoom: 15, hash: false, }); // Add zoom and rotation controls to the map. map.addControl(new maplibregl.NavigationControl()); // disable map zoom when using scroll or touch gesture map.scrollZoom.disable(); map.touchZoomRotate.disable(); // disable map rotation using right click + drag or touch rotation gesture map.dragRotate.disable(); map.doubleClickZoom.disable(); map.dragPan.disable(); // create the popup const popup = new maplibregl.Popup({closeOnClick: false, offset: 37}) .setLngLat(pos) .setHTML(decodeURIComponent(html)) .addTo(map); // create the marker const marker = new maplibregl.Marker() .setLngLat(pos) .addTo(map); // collapse attribution control document.getElementsByClassName('maplibregl-ctrl-attrib')[0].classList.remove('maplibregl-compact-show'); } // window.onload = GeoMap2; window.addEventListener("load", GeoMap2); </script> <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="anonymous"> <script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin="anonymous"></script> <script> function GeoMap() { // if WebGL is detected, do nothing if (typeof detectWebGLContext === "function" && detectWebGLContext() === true ) return; const zoom = 5; const pos = [obj.latitude,obj.longitude]; const mymap = L.map('map').setView(pos, zoom); // mymap.dragging.disable(); mymap.touchZoom.disable(); mymap.doubleClickZoom.disable(); mymap.scrollWheelZoom.disable(); mymap.keyboard.disable(); L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token={accessToken}', { minZoom: 4, maxZoom: 12, id: 'mapbox/streets-v11', tileSize: 512, zoomOffset: -1, accessToken: 'pk.eyJ1IjoibWVkaWFtaXh4IiwiYSI6ImNqeWZ5ZmU5eTBsMmIzcG1taGR6ZGp6MTEifQ.6LUovHG-xsIEB-_bwZ04YA', attribution: '<a href="https://www.openstreetmap.org/">OpenStreetMap</a>', }).addTo(mymap); L.marker(pos).addTo(mymap) .bindPopup(decodeURIComponent(html)).openPopup(); // L.circle(pos, 7000, {color:'red',fillColor:'#f03',fillOpacity:0.5}).addTo(mymap).bindPopup("I am here."); var popup = L.popup(); } // window.onload = GeoMap; window.addEventListener("load", GeoMap); </script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" integrity="sha384-6iYDyQZuuNT7DcPJGXx241czdv2+GDGUcXRiqw1iXrjgYMTorSetxFP3JCMQMwnR" crossorigin="anonymous"> <script src="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js" integrity="sha384-PDjg2ZdS3khPzd53i18+7tzB32JVQfFMrTXYo21RqPgUmEVAPwIhxOUF/8sP79CS" crossorigin="anonymous"></script> <script> <!-- window.addEventListener("load", function(){ window.cookieconsent.initialise({ "position": "bottom-right", "palette": { "popup": { "background": "#2196f3", "text": "white" }, "button": { "background": "white", "text": "#2196f3" } }, "content": { "message": "Wenn Sie die Website weiter nutzen, stimmen Sie der Weitergabe von Daten zu.", "dismiss": "Akzeptieren", "link": "Erfahren Sie mehr", "href": "https://www.netip.de/impressum.htm" } })}); // --> </script> <script data-ad-client="ca-pub-5048535348843529" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"> </script> </head> <body> <header> <div class="left"> <a class="active" href="https://www.netip.de/" title="Home"><i class="fa fa-home"></i></a> <form method="get" action="https://www.netip.de/search"> <input type="search" name="query" maxlength="100" value="8.222.208.146" placeholder="IP / Domain / Hostname" title ="Enter the IP address or hostname that you want to lookup"> <button type="submit" class="fa fa-search"></button> </form> </div> <div class="right"> <a style="background-color:#fa0;" href="https://www.netip.de/widget.htm" title="Integrate your widget into your website.">API</a> <form method="post" action="https://www.paypal.com/cgi-bin/webscr" style="display:inline-block;"> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" value="5HAG8MMDWW4DA"> <input type="hidden" name="item_name" value="NetIP.de donation"> <input type="hidden" name="currency_code" value="EUR"> <input type="hidden" name="return" value="https://www.netip.de/"> <input type="hidden" name="cancel_return" value="https://www.netip.de/"> <input type="hidden" name="custom" value="8.222.208.146"> <input type="text" name="amount" value="" placeholder="0.00" style="width:50px;text-align:right; margin-left:10px;"> <button type="submit" class="fa fa-shopping-cart" style="margin:0px; padding:13px 1px; font-size:17px; background:transparent;">donate</button> </form> </div> </header> <main> <div class="border"> This service provide geographic location information from a IP address.<br> </div> <div class="border"> <div id="Netip-Main"> <div> IP: 8.222.208.146 &nbsp; <a href="https://www.netip.de/dns?domain=8.222.208.146">DNS</a> - <a href="https://www.netip.de/tracert?host=8.222.208.146">Traceroute</a> - <a href="https://www.netip.de/certificate?hostname=8.222.208.146">Certificate</a> <br> Name: 8.222.208.146&nbsp; <br> Country: SG - Singapur&nbsp; <img src="https://www.netip.de/images/flag/sg.gif" width="32" height="20" alt=""> </div> </div> </div> <script src="https://www.netip.de/api/main.js" async="async"></script> <div id="map" class="border"></div> </main> <script src="https://www.netip.de/js/global.js" async="async"></script> <footer> <a href="https://www.netip.de/" title="Home"><i class="fa fa-home"></i></a> <a href="https://www.netip.de/live/stats.htm" title="Archiv / Live"><i class="fa fa-archive"></i></a> <a href="https://www.netip.de/widget.htm" title="API"><i class="fa fa-share-alt"></i></a> <a href="https://www.netip.de/contact" title="Kontakt" onclick="return OpenWindow(550,400,this.href);"><i class="fa fa-envelope"></i></a> <a href="https://www.netip.de/impressum.htm" title="About / Impressum">About / Impressum</a> <a href="http://www.myfreeware.de/" title="myFreeware.de"><i class="fa fa-shopping-cart"></i></a> </footer> <!-- Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-M86X7YCVLM"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-M86X7YCVLM'); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10