Marker or circle does not work on Leaflet
I'd like to use Leaflet but markers and circles seems not working on my map.
My map is well on the document but marker and circle are hidden.
My code :
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
Loadding with RequireJS :
define('Composite-Map', ['leaflet'], function() { /*my code*/ })
javascript leaflet
add a comment |
I'd like to use Leaflet but markers and circles seems not working on my map.
My map is well on the document but marker and circle are hidden.
My code :
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
Loadding with RequireJS :
define('Composite-Map', ['leaflet'], function() { /*my code*/ })
javascript leaflet
Any errors? What have you done to debug?
– ecg8
Nov 23 '18 at 16:58
1
Could not reproduce with the provided code: next.plnkr.co/edit/GbjJ77Ifz20V1q1V
– ghybs
Nov 23 '18 at 20:42
I used RequireJS to load Leadlet. Any suggestion about that ? See edit#1.
– tonymx227
Nov 26 '18 at 7:19
add a comment |
I'd like to use Leaflet but markers and circles seems not working on my map.
My map is well on the document but marker and circle are hidden.
My code :
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
Loadding with RequireJS :
define('Composite-Map', ['leaflet'], function() { /*my code*/ })
javascript leaflet
I'd like to use Leaflet but markers and circles seems not working on my map.
My map is well on the document but marker and circle are hidden.
My code :
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
Loadding with RequireJS :
define('Composite-Map', ['leaflet'], function() { /*my code*/ })
javascript leaflet
javascript leaflet
edited Nov 26 '18 at 7:19
tonymx227
asked Nov 23 '18 at 16:39
tonymx227tonymx227
1,666113061
1,666113061
Any errors? What have you done to debug?
– ecg8
Nov 23 '18 at 16:58
1
Could not reproduce with the provided code: next.plnkr.co/edit/GbjJ77Ifz20V1q1V
– ghybs
Nov 23 '18 at 20:42
I used RequireJS to load Leadlet. Any suggestion about that ? See edit#1.
– tonymx227
Nov 26 '18 at 7:19
add a comment |
Any errors? What have you done to debug?
– ecg8
Nov 23 '18 at 16:58
1
Could not reproduce with the provided code: next.plnkr.co/edit/GbjJ77Ifz20V1q1V
– ghybs
Nov 23 '18 at 20:42
I used RequireJS to load Leadlet. Any suggestion about that ? See edit#1.
– tonymx227
Nov 26 '18 at 7:19
Any errors? What have you done to debug?
– ecg8
Nov 23 '18 at 16:58
Any errors? What have you done to debug?
– ecg8
Nov 23 '18 at 16:58
1
1
Could not reproduce with the provided code: next.plnkr.co/edit/GbjJ77Ifz20V1q1V
– ghybs
Nov 23 '18 at 20:42
Could not reproduce with the provided code: next.plnkr.co/edit/GbjJ77Ifz20V1q1V
– ghybs
Nov 23 '18 at 20:42
I used RequireJS to load Leadlet. Any suggestion about that ? See edit#1.
– tonymx227
Nov 26 '18 at 7:19
I used RequireJS to load Leadlet. Any suggestion about that ? See edit#1.
– tonymx227
Nov 26 '18 at 7:19
add a comment |
1 Answer
1
active
oldest
votes
The problem is that you're trying to define leaflet
as a module. But it's not a module. Use require
instead of define
and it will work:
require(['https://unpkg.com/leaflet@1.3.4/dist/leaflet.js'], function() {
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
console.log(0);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
})
#map {height:100vh}
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"/>
<div id="map"></div>
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53450284%2fmarker-or-circle-does-not-work-on-leaflet%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The problem is that you're trying to define leaflet
as a module. But it's not a module. Use require
instead of define
and it will work:
require(['https://unpkg.com/leaflet@1.3.4/dist/leaflet.js'], function() {
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
console.log(0);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
})
#map {height:100vh}
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"/>
<div id="map"></div>
add a comment |
The problem is that you're trying to define leaflet
as a module. But it's not a module. Use require
instead of define
and it will work:
require(['https://unpkg.com/leaflet@1.3.4/dist/leaflet.js'], function() {
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
console.log(0);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
})
#map {height:100vh}
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"/>
<div id="map"></div>
add a comment |
The problem is that you're trying to define leaflet
as a module. But it's not a module. Use require
instead of define
and it will work:
require(['https://unpkg.com/leaflet@1.3.4/dist/leaflet.js'], function() {
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
console.log(0);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
})
#map {height:100vh}
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"/>
<div id="map"></div>
The problem is that you're trying to define leaflet
as a module. But it's not a module. Use require
instead of define
and it will work:
require(['https://unpkg.com/leaflet@1.3.4/dist/leaflet.js'], function() {
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
console.log(0);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
})
#map {height:100vh}
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"/>
<div id="map"></div>
require(['https://unpkg.com/leaflet@1.3.4/dist/leaflet.js'], function() {
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
console.log(0);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
})
#map {height:100vh}
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"/>
<div id="map"></div>
require(['https://unpkg.com/leaflet@1.3.4/dist/leaflet.js'], function() {
var map = L.map(document.querySelector('#map')).setView([51.505, -0.09], 13);
console.log(0);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
attribution: 'MYMAP',
maxZoom: 18,
id: 'mapbox.streets',
accessToken: 'MYTOKEN'
}).addTo(map);
var marker = L.marker([51.5, -0.09]).addTo(map);
var circle = L.circle([51.508, -0.11], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(map);
})
#map {height:100vh}
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"/>
<div id="map"></div>
answered Nov 27 '18 at 16:00
Kosh VeryKosh Very
10.9k1924
10.9k1924
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53450284%2fmarker-or-circle-does-not-work-on-leaflet%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Any errors? What have you done to debug?
– ecg8
Nov 23 '18 at 16:58
1
Could not reproduce with the provided code: next.plnkr.co/edit/GbjJ77Ifz20V1q1V
– ghybs
Nov 23 '18 at 20:42
I used RequireJS to load Leadlet. Any suggestion about that ? See edit#1.
– tonymx227
Nov 26 '18 at 7:19