Skip to content

Commit

Permalink
Merge pull request #1159 from NYCPlanning/1155/update-zola-dtm-link
Browse files Browse the repository at this point in the history
1159 Updated ZOLA DTM link
  • Loading branch information
TylerMatteo authored Dec 12, 2023
2 parents 977fb40 + c3bdebe commit 1d2a2b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/models/map-features/lot.js
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ export default class LotFragment extends MF.Fragment {

@computed('bbl')
get digitalTaxMapLink() {
return `http://maps.nyc.gov/taxmap/map.htm?searchType=BblSearch&featureTypeName=EVERY_BBL&featureName=${this.bbl}`;
return `http://gis.nyc.gov/taxmap/map.htm?searchType=BblSearch&featureTypeName=EVERY_BBL&featureName=${this.bbl}`;
}

@computed('zonemap')
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/models/lot-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ module('Unit | Model | lot', function(hooks) {
const model = await this.owner.lookup('service:store')
.findRecord('lot', 1007650065);

assert.equal(model.properties.digitalTaxMapLink, 'http://maps.nyc.gov/taxmap/map.htm?searchType=BblSearch&featureTypeName=EVERY_BBL&featureName=1007650065');
assert.equal(model.properties.digitalTaxMapLink, 'http://gis.nyc.gov/taxmap/map.htm?searchType=BblSearch&featureTypeName=EVERY_BBL&featureName=1007650065');
});

test('it generates correct links: Zoning Map', async function(assert) {
Expand Down

0 comments on commit 1d2a2b7

Please sign in to comment.