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 jsts import #4660

Merged
merged 1 commit into from
Feb 21, 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
5 changes: 3 additions & 2 deletions contribs/gmf/src/objectediting/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ import olStyleFill from 'ol/style/Fill.js';
import olStyleStroke from 'ol/style/Stroke.js';
import olStyleStyle from 'ol/style/Style.js';

import jsts from 'jsts';
// @ts-ignore: not supported import
import {OL3Parser} from 'jsts/io';


/**
Expand Down Expand Up @@ -317,7 +318,7 @@ function Controller($scope, $timeout, gettextCatalog,
* @type {!jsts.io.OL3Parser}
* @private
*/
this.jstsOL3Parser_ = new jsts.io.OL3Parser();
this.jstsOL3Parser_ = new OL3Parser();

/**
* The state of the feature determines whether the next 'save' request
Expand Down