main.py
CHANGED
@@ -21,7 +21,8 @@ js = """
|
|
21 |
let map = null;
|
22 |
function load()
|
23 |
{
|
24 |
-
map = L.map('mapid').setView([
|
|
|
25 |
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
26 |
maxZoom: 19,
|
27 |
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
|
@@ -33,7 +34,7 @@ function load()
|
|
33 |
$( "#chat_form" ).on( "submit", function( event ) {
|
34 |
//alert( "Handler for `submit` called." );
|
35 |
//event.preventDefault();
|
36 |
-
setTimeout(handle_post,
|
37 |
});
|
38 |
|
39 |
|
|
|
21 |
let map = null;
|
22 |
function load()
|
23 |
{
|
24 |
+
//map = L.map('mapid').setView([37.5158, 127.0991], 13);
|
25 |
+
map = L.map('mapid').setView([33.4311, 126.5499], 13);
|
26 |
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
27 |
maxZoom: 19,
|
28 |
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
|
|
|
34 |
$( "#chat_form" ).on( "submit", function( event ) {
|
35 |
//alert( "Handler for `submit` called." );
|
36 |
//event.preventDefault();
|
37 |
+
setTimeout(handle_post, 15000);
|
38 |
});
|
39 |
|
40 |
|