Giter VIP home page Giter VIP logo

Comments (4)

quentin-ol avatar quentin-ol commented on May 19, 2024

I can't reproduce your error.
Could you provide a minimal example that reproduces the error ?

Here is an example that works for me:
in app.module.ts:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AngularOpenlayersModule } from 'angular2-openlayers';
import { AppComponent } from './app.component';

@NgModule({
  declarations:  [ AppComponent ],
  imports: [ BrowserModule, AngularOpenlayersModule ],
  bootstrap: [ AppComponent ]
})
export class AppModule { }

in app.component.ts:

import { Component } from '@angular/core';
import { MapComponent, ViewComponent, LayerTileComponent, LayerVectorComponent, 
          SourceOsmComponent, SourceVectorComponent, FeatureComponent,
          GeometryPointComponent, GeometryLinestringComponent, 
          CoordinateComponent, CollectionCoordinatesComponent } from 'angular2-openlayers';

@Component({
  selector: 'app-root',
  template: `
  <h1>Angular2-openlayers example</h1>
  <div style='height:300px'>
      <aol-map>
        <aol-view zoom="13">
          <aol-coordinate [x]="5" [y]="45" [srid]="'EPSG:4326'"></aol-coordinate>
        </aol-view>
         <aol-layer-tile>
            <aol-source-osm></aol-source-osm>
        </aol-layer-tile>
          <aol-layer-vector>
            <aol-source-vector>
                <aol-feature>
                    <aol-geometry-point>
                        <aol-coordinate [x]="5" [y]="45" [srid]="'EPSG:4326'"></aol-coordinate>
                    </aol-geometry-point>
                </aol-feature>
            </aol-source-vector>
          </aol-layer-vector>
      </aol-map>
   </div>`
})
export class AppComponent {}

in index.html:

<body>
  <app-root>Loading...</app-root>
</body>

from ngx-openlayers.

FallenRiteMonk avatar FallenRiteMonk commented on May 19, 2024

I figured out what was the problem, it was due to a second import of openlayers that I already had, so removing that fixed the problem.

But would you please be so kind and putt the example in your readme file, that would already help.

Thanks

from ngx-openlayers.

FallenRiteMonk avatar FallenRiteMonk commented on May 19, 2024

And your imports in the app component are not needed! You can remove them and your example still works!

from ngx-openlayers.

quentin-ol avatar quentin-ol commented on May 19, 2024

@FallenRiteMonk
Thanks for the feedback,
I will add this short example to the readme.
Can I close this issue ?

from ngx-openlayers.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.