Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the SVG example #5369

Merged
merged 1 commit into from
Dec 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/svg.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const appmodule = angular.module('app', [
function MainController() {
const source = new SourceVector();
const feature1 = new Feature({
geometry: new Point([599000, 200000])
geometry: new Point([2599000, 1200000])
});
feature1.setStyle([new Style({
image: new Icon({
Expand All @@ -41,7 +41,7 @@ function MainController() {
source.addFeature(feature1);

const feature2 = new Feature({
geometry: new Point([600000, 200000])
geometry: new Point([2600000, 1200000])
});
feature2.setStyle([new Style({
image: new Icon({
Expand All @@ -54,7 +54,7 @@ function MainController() {
source.addFeature(feature2);

const feature3 = new Feature({
geometry: new Point([601000, 200000])
geometry: new Point([2601000, 1200000])
});
feature3.setStyle([new Style({
image: new Icon({
Expand Down