├── .gitignore ├── .idea ├── .name ├── ant.xml ├── codeStyleSettings.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── findbugs-idea.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jenkinsSettings.xml ├── jsLinters │ ├── jshint.xml │ └── jslint.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml └── vcs.xml ├── .travis.yml ├── API.md ├── ARCHITECTURE.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTES.md ├── README.md ├── atlassian-ide-plugin.xml ├── css ├── app.css ├── feature-icons.css ├── img ├── map.css └── reset.css ├── data ├── core.yaml ├── data_dev.js ├── deprecated.json ├── discarded.json ├── feature-icons.json ├── floorplan-core.yaml ├── floorplan-presets.yaml ├── imagery.json ├── imagery.xml ├── imagery_convert.js ├── imperial.json ├── introGraph.js ├── line-icons.json ├── locales.json ├── maki_sprite.js ├── operations-sprite.json ├── presets.yaml ├── presets │ ├── README.md │ ├── categories.json │ ├── categories │ │ ├── landuse.json │ │ ├── path.json │ │ ├── rail.json │ │ ├── road.json │ │ └── water.json │ ├── defaults.json │ ├── fields.json │ ├── fields │ │ ├── access.json │ │ ├── address.json │ │ ├── admin_level.json │ │ ├── aeroway.json │ │ ├── amenity.json │ │ ├── atm.json │ │ ├── barrier.json │ │ ├── bicycle_parking.json │ │ ├── building.json │ │ ├── building_area.json │ │ ├── building_yes.json │ │ ├── capacity.json │ │ ├── cardinal_direction.json │ │ ├── clock_direction.json │ │ ├── collection_times.json │ │ ├── construction.json │ │ ├── country.json │ │ ├── crossing.json │ │ ├── cuisine.json │ │ ├── denomination.json │ │ ├── denotation.json │ │ ├── elevation.json │ │ ├── emergency.json │ │ ├── entrance.json │ │ ├── fax.json │ │ ├── fee.json │ │ ├── highway.json │ │ ├── historic.json │ │ ├── iata.json │ │ ├── icao.json │ │ ├── incline.json │ │ ├── internet_access.json │ │ ├── landuse.json │ │ ├── lanes.json │ │ ├── layer.json │ │ ├── leisure.json │ │ ├── levels.json │ │ ├── location.json │ │ ├── man_made.json │ │ ├── maxspeed.json │ │ ├── name.json │ │ ├── natural.json │ │ ├── network.json │ │ ├── note.json │ │ ├── office.json │ │ ├── oneway.json │ │ ├── oneway_yes.json │ │ ├── opening_hours.json │ │ ├── operator.json │ │ ├── park_ride.json │ │ ├── parking.json │ │ ├── phone.json │ │ ├── place.json │ │ ├── power.json │ │ ├── railway.json │ │ ├── ref.json │ │ ├── religion.json │ │ ├── sac_scale.json │ │ ├── service.json │ │ ├── shelter.json │ │ ├── shop.json │ │ ├── source.json │ │ ├── sport.json │ │ ├── structure.json │ │ ├── supervised.json │ │ ├── surface.json │ │ ├── tourism.json │ │ ├── towertype.json │ │ ├── tracktype.json │ │ ├── trail_visibility.json │ │ ├── water.json │ │ ├── waterway.json │ │ ├── website.json │ │ ├── wetland.json │ │ ├── wheelchair.json │ │ ├── wikipedia.json │ │ └── wood.json │ ├── floorplan-categories.json │ ├── floorplan-defaults.json │ ├── floorplan-fields.json │ ├── floorplan-presets.json │ ├── presets.json │ ├── presets │ │ ├── aeroway.json │ │ ├── aeroway │ │ │ ├── aerodrome.json │ │ │ ├── apron.json │ │ │ ├── gate.json │ │ │ ├── hangar.json │ │ │ ├── helipad.json │ │ │ ├── runway.json │ │ │ ├── taxiway.json │ │ │ └── terminal.json │ │ ├── amenity.json │ │ ├── amenity │ │ │ ├── bank.json │ │ │ ├── bar.json │ │ │ ├── bench.json │ │ │ ├── bicycle_parking.json │ │ │ ├── bicycle_rental.json │ │ │ ├── cafe.json │ │ │ ├── car_wash.json │ │ │ ├── cinema.json │ │ │ ├── college.json │ │ │ ├── courthouse.json │ │ │ ├── embassy.json │ │ │ ├── fast_food.json │ │ │ ├── fire_station.json │ │ │ ├── fountain.json │ │ │ ├── fuel.json │ │ │ ├── grave_yard.json │ │ │ ├── hospital.json │ │ │ ├── kindergarten.json │ │ │ ├── library.json │ │ │ ├── marketplace.json │ │ │ ├── parking.json │ │ │ ├── pharmacy.json │ │ │ ├── place_of_worship.json │ │ │ ├── place_of_worship │ │ │ │ ├── christian.json │ │ │ │ ├── jewish.json │ │ │ │ └── muslim.json │ │ │ ├── police.json │ │ │ ├── post_box.json │ │ │ ├── post_office.json │ │ │ ├── pub.json │ │ │ ├── restaurant.json │ │ │ ├── school.json │ │ │ ├── swimming_pool.json │ │ │ ├── telephone.json │ │ │ ├── theatre.json │ │ │ ├── toilets.json │ │ │ ├── townhall.json │ │ │ ├── university.json │ │ │ └── waste_basket.json │ │ ├── barrier.json │ │ ├── barrier │ │ │ ├── block.json │ │ │ ├── bollard.json │ │ │ ├── cattle_grid.json │ │ │ ├── city_wall.json │ │ │ ├── cycle_barrier.json │ │ │ ├── ditch.json │ │ │ ├── entrance.json │ │ │ ├── fence.json │ │ │ ├── gate.json │ │ │ ├── hedge.json │ │ │ ├── kissing_gate.json │ │ │ ├── lift_gate.json │ │ │ ├── retaining_wall.json │ │ │ ├── stile.json │ │ │ ├── toll_booth.json │ │ │ └── wall.json │ │ ├── boundary │ │ │ └── administrative.json │ │ ├── building.json │ │ ├── building │ │ │ ├── apartments.json │ │ │ ├── entrance.json │ │ │ └── house.json │ │ ├── emergency │ │ │ └── phone.json │ │ ├── entrance.json │ │ ├── highway.json │ │ ├── highway │ │ │ ├── bridleway.json │ │ │ ├── bus_stop.json │ │ │ ├── crossing.json │ │ │ ├── cycleway.json │ │ │ ├── footway.json │ │ │ ├── living_street.json │ │ │ ├── mini_roundabout.json │ │ │ ├── motorway.json │ │ │ ├── motorway_junction.json │ │ │ ├── motorway_link.json │ │ │ ├── path.json │ │ │ ├── pedestrian.json │ │ │ ├── primary.json │ │ │ ├── primary_link.json │ │ │ ├── residential.json │ │ │ ├── road.json │ │ │ ├── secondary.json │ │ │ ├── secondary_link.json │ │ │ ├── service.json │ │ │ ├── service │ │ │ │ ├── alley.json │ │ │ │ ├── drive-through.json │ │ │ │ ├── driveway.json │ │ │ │ ├── emergency_access.json │ │ │ │ └── parking_aisle.json │ │ │ ├── steps.json │ │ │ ├── tertiary.json │ │ │ ├── tertiary_link.json │ │ │ ├── track.json │ │ │ ├── traffic_signals.json │ │ │ ├── trunk.json │ │ │ ├── trunk_link.json │ │ │ ├── turning_circle.json │ │ │ └── unclassified.json │ │ ├── historic.json │ │ ├── historic │ │ │ ├── archaeological_site.json │ │ │ ├── boundary_stone.json │ │ │ ├── castle.json │ │ │ ├── memorial.json │ │ │ ├── monument.json │ │ │ ├── ruins.json │ │ │ ├── wayside_cross.json │ │ │ └── wayside_shrine.json │ │ ├── landuse.json │ │ ├── landuse │ │ │ ├── allotments.json │ │ │ ├── basin.json │ │ │ ├── cemetery.json │ │ │ ├── commercial.json │ │ │ ├── construction.json │ │ │ ├── farm.json │ │ │ ├── farmyard.json │ │ │ ├── forest.json │ │ │ ├── grass.json │ │ │ ├── industrial.json │ │ │ ├── meadow.json │ │ │ ├── orchard.json │ │ │ ├── quarry.json │ │ │ ├── residential.json │ │ │ ├── retail.json │ │ │ └── vineyard.json │ │ ├── leisure.json │ │ ├── leisure │ │ │ ├── garden.json │ │ │ ├── golf_course.json │ │ │ ├── marina.json │ │ │ ├── park.json │ │ │ ├── pitch.json │ │ │ ├── pitch │ │ │ │ ├── american_football.json │ │ │ │ ├── baseball.json │ │ │ │ ├── basketball.json │ │ │ │ ├── soccer.json │ │ │ │ ├── tennis.json │ │ │ │ └── volleyball.json │ │ │ ├── playground.json │ │ │ ├── slipway.json │ │ │ ├── stadium.json │ │ │ └── swimming_pool.json │ │ ├── man_made.json │ │ ├── man_made │ │ │ ├── breakwater.json │ │ │ ├── cutline.json │ │ │ ├── lighthouse.json │ │ │ ├── pier.json │ │ │ ├── pipeline.json │ │ │ ├── survey_point.json │ │ │ ├── tower.json │ │ │ ├── wastewater_plant.json │ │ │ ├── water_tower.json │ │ │ ├── water_well.json │ │ │ └── water_works.json │ │ ├── natural.json │ │ ├── natural │ │ │ ├── bay.json │ │ │ ├── beach.json │ │ │ ├── cliff.json │ │ │ ├── coastline.json │ │ │ ├── glacier.json │ │ │ ├── grassland.json │ │ │ ├── heath.json │ │ │ ├── peak.json │ │ │ ├── scrub.json │ │ │ ├── spring.json │ │ │ ├── tree.json │ │ │ ├── water.json │ │ │ ├── water │ │ │ │ ├── lake.json │ │ │ │ ├── pond.json │ │ │ │ └── reservoir.json │ │ │ ├── wetland.json │ │ │ └── wood.json │ │ ├── office.json │ │ ├── other.json │ │ ├── other_area.json │ │ ├── place.json │ │ ├── place │ │ │ ├── city.json │ │ │ ├── hamlet.json │ │ │ ├── island.json │ │ │ ├── isolated_dwelling.json │ │ │ ├── locality.json │ │ │ ├── town.json │ │ │ └── village.json │ │ ├── power.json │ │ ├── power │ │ │ ├── generator.json │ │ │ ├── line.json │ │ │ ├── pole.json │ │ │ ├── sub_station.json │ │ │ ├── tower.json │ │ │ └── transformer.json │ │ ├── railway.json │ │ ├── railway │ │ │ ├── abandoned.json │ │ │ ├── disused.json │ │ │ ├── level_crossing.json │ │ │ ├── monorail.json │ │ │ ├── platform.json │ │ │ ├── rail.json │ │ │ ├── station.json │ │ │ ├── subway.json │ │ │ ├── subway_entrance.json │ │ │ └── tram.json │ │ ├── shop.json │ │ ├── shop │ │ │ ├── alcohol.json │ │ │ ├── bakery.json │ │ │ ├── beauty.json │ │ │ ├── beverages.json │ │ │ ├── bicycle.json │ │ │ ├── books.json │ │ │ ├── boutique.json │ │ │ ├── butcher.json │ │ │ ├── car.json │ │ │ ├── car_parts.json │ │ │ ├── car_repair.json │ │ │ ├── chemist.json │ │ │ ├── clothes.json │ │ │ ├── computer.json │ │ │ ├── confectionery.json │ │ │ ├── convenience.json │ │ │ ├── deli.json │ │ │ ├── department_store.json │ │ │ ├── doityourself.json │ │ │ ├── dry_cleaning.json │ │ │ ├── electronics.json │ │ │ ├── fishmonger.json │ │ │ ├── florist.json │ │ │ ├── furniture.json │ │ │ ├── garden_centre.json │ │ │ ├── gift.json │ │ │ ├── greengrocer.json │ │ │ ├── hairdresser.json │ │ │ ├── hardware.json │ │ │ ├── hifi.json │ │ │ ├── jewelry.json │ │ │ ├── kiosk.json │ │ │ ├── laundry.json │ │ │ ├── mall.json │ │ │ ├── mobile_phone.json │ │ │ ├── motorcycle.json │ │ │ ├── music.json │ │ │ ├── newsagent.json │ │ │ ├── optician.json │ │ │ ├── outdoor.json │ │ │ ├── pet.json │ │ │ ├── shoes.json │ │ │ ├── sports.json │ │ │ ├── stationery.json │ │ │ ├── supermarket.json │ │ │ ├── toys.json │ │ │ ├── travel_agency.json │ │ │ ├── tyres.json │ │ │ ├── vacant.json │ │ │ ├── variety_store.json │ │ │ └── video.json │ │ ├── tourism.json │ │ ├── tourism │ │ │ ├── alpine_hut.json │ │ │ ├── artwork.json │ │ │ ├── attraction.json │ │ │ ├── camp_site.json │ │ │ ├── caravan_site.json │ │ │ ├── chalet.json │ │ │ ├── guest_house.json │ │ │ ├── hostel.json │ │ │ ├── hotel.json │ │ │ ├── information.json │ │ │ ├── motel.json │ │ │ ├── museum.json │ │ │ ├── picnic_site.json │ │ │ ├── theme_park.json │ │ │ ├── viewpoint.json │ │ │ └── zoo.json │ │ ├── waterway.json │ │ └── waterway │ │ │ ├── canal.json │ │ │ ├── dam.json │ │ │ ├── ditch.json │ │ │ ├── drain.json │ │ │ ├── river.json │ │ │ ├── riverbank.json │ │ │ ├── stream.json │ │ │ └── weir.json │ └── schema │ │ ├── field.json │ │ └── preset.json ├── update_locales.js └── wikipedia.json ├── dist ├── img │ ├── background-pattern-1.png │ ├── background-pattern-opacity.png │ ├── bing_maps.png │ ├── cursor-draw-connect-line.png │ ├── cursor-draw-connect-line2x.png │ ├── cursor-draw-connect-vertex.png │ ├── cursor-draw-connect-vertex2x.png │ ├── cursor-draw.png │ ├── cursor-draw2x.png │ ├── cursor-grab.png │ ├── cursor-grab2x.png │ ├── cursor-grabbing.png │ ├── cursor-grabbing2x.png │ ├── cursor-pointer.png │ ├── cursor-pointer2x.png │ ├── cursor-pointing.png │ ├── cursor-pointing2x.png │ ├── cursor-select-acting.png │ ├── cursor-select-acting2x.png │ ├── cursor-select-add.png │ ├── cursor-select-add2x.png │ ├── cursor-select-area.png │ ├── cursor-select-area2x.png │ ├── cursor-select-line.png │ ├── cursor-select-line2x.png │ ├── cursor-select-point.png │ ├── cursor-select-point2x.png │ ├── cursor-select-remove.png │ ├── cursor-select-remove2x.png │ ├── cursor-select-split.png │ ├── cursor-select-split2x.png │ ├── cursor-select-vertex.png │ ├── cursor-select-vertex2x.png │ ├── line-presets.png │ ├── loader-black.gif │ ├── loader-white.gif │ ├── loader_bg.gif │ ├── logo.png │ ├── maki-sprite.png │ ├── mini-loader.gif │ ├── pattern │ │ ├── cemetery.png │ │ ├── construction.png │ │ ├── dots.png │ │ ├── farmland.png │ │ ├── orchard.png │ │ ├── vineyard.png │ │ └── wetland.png │ └── sprite.svg ├── index.html ├── land.html └── locales │ ├── af.json │ ├── bs.json │ ├── ca.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── hr.json │ ├── is.json │ ├── it.json │ ├── ja.json │ ├── lv.json │ ├── nl.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── sk.json │ ├── sr.json │ ├── sv.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ ├── zh.json │ └── zh_TW.json ├── docs ├── coding_standards.txt └── img │ ├── geocoder.png │ ├── modes.png │ └── operations.png ├── iD.js ├── iD.min.js ├── img └── office-building.png ├── index.html ├── js ├── id │ ├── actions.js │ ├── actions │ │ ├── add_entity.js │ │ ├── add_midpoint.js │ │ ├── add_vertex.js │ │ ├── change_tags.js │ │ ├── circularize.js │ │ ├── connect.js │ │ ├── delete_multiple.js │ │ ├── delete_node.js │ │ ├── delete_relation.js │ │ ├── delete_way.js │ │ ├── deprecate_tags.js │ │ ├── disconnect.js │ │ ├── join.js │ │ ├── merge.js │ │ ├── move.js │ │ ├── move_node.js │ │ ├── noop.js │ │ ├── orthogonalize.js │ │ ├── reverse.js │ │ ├── rotate_way.js │ │ └── split.js │ ├── behavior.js │ ├── behavior │ │ ├── accept.js │ │ ├── add_way.js │ │ ├── drag.js │ │ ├── draw.js │ │ ├── draw_way.js │ │ ├── hash.js │ │ ├── hover.js │ │ ├── lasso.js │ │ └── select.js │ ├── core │ │ ├── connection.js │ │ ├── difference.js │ │ ├── entity.js │ │ ├── graph.js │ │ ├── history.js │ │ ├── node.js │ │ ├── relation.js │ │ ├── tree.js │ │ └── way.js │ ├── end.js │ ├── floors.js │ ├── floors │ │ ├── basement.js │ │ ├── first.js │ │ ├── other.js │ │ ├── second.js │ │ └── third.js │ ├── geo.js │ ├── geo │ │ ├── extent.js │ │ └── multipolygon.js │ ├── id.js │ ├── modes.js │ ├── modes │ │ ├── add_area.js │ │ ├── add_line.js │ │ ├── add_point.js │ │ ├── browse.js │ │ ├── drag_node.js │ │ ├── draw_area.js │ │ ├── draw_line.js │ │ ├── move.js │ │ ├── rotate_way.js │ │ └── select.js │ ├── operations.js │ ├── operations │ │ ├── circularize.js │ │ ├── delete.js │ │ ├── disconnect.js │ │ ├── merge.js │ │ ├── move.js │ │ ├── orthogonalize.js │ │ ├── reverse.js │ │ ├── rotate.js │ │ └── split.js │ ├── presets.js │ ├── presets │ │ ├── category.js │ │ ├── collection.js │ │ ├── field.js │ │ └── preset.js │ ├── renderer │ │ ├── background.js │ │ ├── background_source.js │ │ ├── localgpx.js │ │ ├── map.js │ │ └── overlay.js │ ├── services │ │ ├── taginfo.js │ │ └── wikipedia.js │ ├── start.js │ ├── svg.js │ ├── svg │ │ ├── areas.js │ │ ├── labels.js │ │ ├── lines.js │ │ ├── member_classes.js │ │ ├── midpoints.js │ │ ├── points.js │ │ ├── surface.js │ │ ├── tag_classes.js │ │ └── vertices.js │ ├── ui.js │ ├── ui │ │ ├── account.js │ │ ├── attribution.js │ │ ├── background.js │ │ ├── cmd.js │ │ ├── commit.js │ │ ├── confirm.js │ │ ├── contributors.js │ │ ├── flash.js │ │ ├── floors.js │ │ ├── geocoder.js │ │ ├── geolocate.js │ │ ├── help.js │ │ ├── inspector.js │ │ ├── intro.js │ │ ├── intro │ │ │ ├── area.js │ │ │ ├── line.js │ │ │ ├── navigation.js │ │ │ ├── point.js │ │ │ └── start_editing.js │ │ ├── lasso.js │ │ ├── loading.js │ │ ├── modal.js │ │ ├── modes.js │ │ ├── notice.js │ │ ├── overlay-ui.js │ │ ├── preset.js │ │ ├── preset │ │ │ ├── access.js │ │ │ ├── address.js │ │ │ ├── check.js │ │ │ ├── combo.js │ │ │ ├── defaultcheck.js │ │ │ ├── input.js │ │ │ ├── localized.js │ │ │ ├── maxspeed.js │ │ │ ├── radio.js │ │ │ ├── textarea.js │ │ │ └── wikipedia.js │ │ ├── preset_grid.js │ │ ├── preset_icon.js │ │ ├── radial_menu.js │ │ ├── restore.js │ │ ├── save.js │ │ ├── source_switch.js │ │ ├── spinner.js │ │ ├── splash.js │ │ ├── status.js │ │ ├── success.js │ │ ├── tag_editor.js │ │ ├── tag_reference.js │ │ ├── taglist.js │ │ ├── tail.js │ │ ├── toggle.js │ │ ├── undo_redo.js │ │ └── zoom.js │ ├── util.js │ └── validate.js └── lib │ ├── bootstrap-tooltip.js │ ├── d3-compat.js │ ├── d3.combobox.js │ ├── d3.curtain.js │ ├── d3.geo.tile.js │ ├── d3.jsonp.js │ ├── d3.keybinding.js │ ├── d3.one.js │ ├── d3.size.js │ ├── d3.trigger.js │ ├── d3.typeahead.js │ ├── d3.v3.js │ ├── jxon.js │ ├── locale.js │ ├── lodash.js │ ├── marked.js │ ├── osmauth.js │ ├── rtree.js │ └── togeojson.js ├── land.html ├── ofp-editor.iml ├── package.json ├── svg ├── area-presets.svg ├── cursors.svg ├── design.svg ├── landuse-colors.svg ├── landuse-patterns.svg ├── line-presets.svg ├── loader.psd ├── loader.svg ├── logo.svg ├── map-colors.svg ├── mini-loader.psd ├── mini-loader.svg ├── preset-sketch.svg ├── radial-menu.svg ├── renders │ ├── basic-ui.png │ ├── layers-more.png │ ├── layers.png │ ├── layerswitcher-default.png │ ├── layerswitcher-expand.png │ ├── layerswitcher-expanded.png │ ├── layerswitcher-hover.png │ ├── layerswitcher-inactive.png │ ├── layerswitcher-simplified.png │ └── opacity.png └── ui-mockups.svg └── test ├── bench ├── benchmark.js ├── event-binding-cost.html ├── node-xml.html ├── removing.html ├── translate-rounding.html ├── translate-vs-matrix-webkit.html └── translate-vs-matrix.html ├── css ├── data ├── node.xml └── way.xml ├── img ├── index.html ├── index_packaged.html ├── lib └── bind-shim.js ├── rendering.html └── spec ├── actions ├── add_entity.js ├── add_midpoint.js ├── change_tags.js ├── circularize.js ├── connect.js ├── delete_multiple.js ├── delete_node.js ├── delete_relation.js ├── delete_way.js ├── disconnect.js ├── join.js ├── merge.js ├── move.js ├── move_node.js ├── noop.js ├── orthogonalize.js ├── reverse.js └── split.js ├── behavior ├── hash.js ├── hover.js ├── lasso.js └── select.js ├── core ├── connection.js ├── difference.js ├── entity.js ├── graph.js ├── history.js ├── node.js ├── relation.js ├── tree.js └── way.js ├── geo.js ├── geo ├── extent.js └── multipolygon.js ├── lib ├── d3.keybinding.js └── locale.js ├── modes └── add_point.js ├── presets ├── category.js ├── collection.js └── preset.js ├── renderer ├── background.js └── map.js ├── spec_helpers.js ├── svg.js ├── svg ├── areas.js ├── lines.js ├── member_classes.js ├── midpoints.js ├── points.js ├── tag_classes.js └── vertices.js ├── taginfo.js ├── ui ├── cmd.js ├── confirm.js ├── flash.js ├── geocoder.js ├── inspector.js ├── modal.js ├── preset │ └── access.js └── taglist.js └── util.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | id-editor -------------------------------------------------------------------------------- /.idea/ant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/ant.xml -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/findbugs-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/findbugs-idea.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jenkinsSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/jenkinsSettings.xml -------------------------------------------------------------------------------- /.idea/jsLinters/jshint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/jsLinters/jshint.xml -------------------------------------------------------------------------------- /.idea/jsLinters/jslint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/jsLinters/jslint.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/API.md -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/Makefile -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/README.md -------------------------------------------------------------------------------- /atlassian-ide-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/atlassian-ide-plugin.xml -------------------------------------------------------------------------------- /css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/css/app.css -------------------------------------------------------------------------------- /css/feature-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/css/feature-icons.css -------------------------------------------------------------------------------- /css/img: -------------------------------------------------------------------------------- 1 | ../dist/img/ -------------------------------------------------------------------------------- /css/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/css/map.css -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/css/reset.css -------------------------------------------------------------------------------- /data/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/core.yaml -------------------------------------------------------------------------------- /data/data_dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/data_dev.js -------------------------------------------------------------------------------- /data/deprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/deprecated.json -------------------------------------------------------------------------------- /data/discarded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/discarded.json -------------------------------------------------------------------------------- /data/feature-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/feature-icons.json -------------------------------------------------------------------------------- /data/floorplan-core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/floorplan-core.yaml -------------------------------------------------------------------------------- /data/floorplan-presets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/floorplan-presets.yaml -------------------------------------------------------------------------------- /data/imagery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/imagery.json -------------------------------------------------------------------------------- /data/imagery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/imagery.xml -------------------------------------------------------------------------------- /data/imagery_convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/imagery_convert.js -------------------------------------------------------------------------------- /data/imperial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/imperial.json -------------------------------------------------------------------------------- /data/introGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/introGraph.js -------------------------------------------------------------------------------- /data/line-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/line-icons.json -------------------------------------------------------------------------------- /data/locales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/locales.json -------------------------------------------------------------------------------- /data/maki_sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/maki_sprite.js -------------------------------------------------------------------------------- /data/operations-sprite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/operations-sprite.json -------------------------------------------------------------------------------- /data/presets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets.yaml -------------------------------------------------------------------------------- /data/presets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/README.md -------------------------------------------------------------------------------- /data/presets/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/categories.json -------------------------------------------------------------------------------- /data/presets/categories/landuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/categories/landuse.json -------------------------------------------------------------------------------- /data/presets/categories/path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/categories/path.json -------------------------------------------------------------------------------- /data/presets/categories/rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/categories/rail.json -------------------------------------------------------------------------------- /data/presets/categories/road.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/categories/road.json -------------------------------------------------------------------------------- /data/presets/categories/water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/categories/water.json -------------------------------------------------------------------------------- /data/presets/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/defaults.json -------------------------------------------------------------------------------- /data/presets/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields.json -------------------------------------------------------------------------------- /data/presets/fields/access.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/access.json -------------------------------------------------------------------------------- /data/presets/fields/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/address.json -------------------------------------------------------------------------------- /data/presets/fields/admin_level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/admin_level.json -------------------------------------------------------------------------------- /data/presets/fields/aeroway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/aeroway.json -------------------------------------------------------------------------------- /data/presets/fields/amenity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/amenity.json -------------------------------------------------------------------------------- /data/presets/fields/atm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/atm.json -------------------------------------------------------------------------------- /data/presets/fields/barrier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/barrier.json -------------------------------------------------------------------------------- /data/presets/fields/bicycle_parking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/bicycle_parking.json -------------------------------------------------------------------------------- /data/presets/fields/building.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/building.json -------------------------------------------------------------------------------- /data/presets/fields/building_area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/building_area.json -------------------------------------------------------------------------------- /data/presets/fields/building_yes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/building_yes.json -------------------------------------------------------------------------------- /data/presets/fields/capacity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/capacity.json -------------------------------------------------------------------------------- /data/presets/fields/cardinal_direction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/cardinal_direction.json -------------------------------------------------------------------------------- /data/presets/fields/clock_direction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/clock_direction.json -------------------------------------------------------------------------------- /data/presets/fields/collection_times.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/collection_times.json -------------------------------------------------------------------------------- /data/presets/fields/construction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/construction.json -------------------------------------------------------------------------------- /data/presets/fields/country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/country.json -------------------------------------------------------------------------------- /data/presets/fields/crossing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/crossing.json -------------------------------------------------------------------------------- /data/presets/fields/cuisine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/cuisine.json -------------------------------------------------------------------------------- /data/presets/fields/denomination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/denomination.json -------------------------------------------------------------------------------- /data/presets/fields/denotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/denotation.json -------------------------------------------------------------------------------- /data/presets/fields/elevation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/elevation.json -------------------------------------------------------------------------------- /data/presets/fields/emergency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/emergency.json -------------------------------------------------------------------------------- /data/presets/fields/entrance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/entrance.json -------------------------------------------------------------------------------- /data/presets/fields/fax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/fax.json -------------------------------------------------------------------------------- /data/presets/fields/fee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/fee.json -------------------------------------------------------------------------------- /data/presets/fields/highway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/highway.json -------------------------------------------------------------------------------- /data/presets/fields/historic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/historic.json -------------------------------------------------------------------------------- /data/presets/fields/iata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/iata.json -------------------------------------------------------------------------------- /data/presets/fields/icao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/icao.json -------------------------------------------------------------------------------- /data/presets/fields/incline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/incline.json -------------------------------------------------------------------------------- /data/presets/fields/internet_access.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/internet_access.json -------------------------------------------------------------------------------- /data/presets/fields/landuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/landuse.json -------------------------------------------------------------------------------- /data/presets/fields/lanes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/lanes.json -------------------------------------------------------------------------------- /data/presets/fields/layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/layer.json -------------------------------------------------------------------------------- /data/presets/fields/leisure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/leisure.json -------------------------------------------------------------------------------- /data/presets/fields/levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/levels.json -------------------------------------------------------------------------------- /data/presets/fields/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/location.json -------------------------------------------------------------------------------- /data/presets/fields/man_made.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/man_made.json -------------------------------------------------------------------------------- /data/presets/fields/maxspeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/maxspeed.json -------------------------------------------------------------------------------- /data/presets/fields/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/name.json -------------------------------------------------------------------------------- /data/presets/fields/natural.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/natural.json -------------------------------------------------------------------------------- /data/presets/fields/network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/network.json -------------------------------------------------------------------------------- /data/presets/fields/note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/note.json -------------------------------------------------------------------------------- /data/presets/fields/office.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/office.json -------------------------------------------------------------------------------- /data/presets/fields/oneway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/oneway.json -------------------------------------------------------------------------------- /data/presets/fields/oneway_yes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/oneway_yes.json -------------------------------------------------------------------------------- /data/presets/fields/opening_hours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/opening_hours.json -------------------------------------------------------------------------------- /data/presets/fields/operator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/operator.json -------------------------------------------------------------------------------- /data/presets/fields/park_ride.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/park_ride.json -------------------------------------------------------------------------------- /data/presets/fields/parking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/parking.json -------------------------------------------------------------------------------- /data/presets/fields/phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/phone.json -------------------------------------------------------------------------------- /data/presets/fields/place.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/place.json -------------------------------------------------------------------------------- /data/presets/fields/power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/power.json -------------------------------------------------------------------------------- /data/presets/fields/railway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/railway.json -------------------------------------------------------------------------------- /data/presets/fields/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/ref.json -------------------------------------------------------------------------------- /data/presets/fields/religion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/religion.json -------------------------------------------------------------------------------- /data/presets/fields/sac_scale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/sac_scale.json -------------------------------------------------------------------------------- /data/presets/fields/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/service.json -------------------------------------------------------------------------------- /data/presets/fields/shelter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/shelter.json -------------------------------------------------------------------------------- /data/presets/fields/shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/shop.json -------------------------------------------------------------------------------- /data/presets/fields/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/source.json -------------------------------------------------------------------------------- /data/presets/fields/sport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/sport.json -------------------------------------------------------------------------------- /data/presets/fields/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/structure.json -------------------------------------------------------------------------------- /data/presets/fields/supervised.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/supervised.json -------------------------------------------------------------------------------- /data/presets/fields/surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/surface.json -------------------------------------------------------------------------------- /data/presets/fields/tourism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/tourism.json -------------------------------------------------------------------------------- /data/presets/fields/towertype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/towertype.json -------------------------------------------------------------------------------- /data/presets/fields/tracktype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/tracktype.json -------------------------------------------------------------------------------- /data/presets/fields/trail_visibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/trail_visibility.json -------------------------------------------------------------------------------- /data/presets/fields/water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/water.json -------------------------------------------------------------------------------- /data/presets/fields/waterway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/waterway.json -------------------------------------------------------------------------------- /data/presets/fields/website.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/website.json -------------------------------------------------------------------------------- /data/presets/fields/wetland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/wetland.json -------------------------------------------------------------------------------- /data/presets/fields/wheelchair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/wheelchair.json -------------------------------------------------------------------------------- /data/presets/fields/wikipedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/wikipedia.json -------------------------------------------------------------------------------- /data/presets/fields/wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/fields/wood.json -------------------------------------------------------------------------------- /data/presets/floorplan-categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/floorplan-categories.json -------------------------------------------------------------------------------- /data/presets/floorplan-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/floorplan-defaults.json -------------------------------------------------------------------------------- /data/presets/floorplan-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/floorplan-fields.json -------------------------------------------------------------------------------- /data/presets/floorplan-presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/floorplan-presets.json -------------------------------------------------------------------------------- /data/presets/presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets.json -------------------------------------------------------------------------------- /data/presets/presets/aeroway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/aeroway.json -------------------------------------------------------------------------------- /data/presets/presets/aeroway/aerodrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/aeroway/aerodrome.json -------------------------------------------------------------------------------- /data/presets/presets/aeroway/apron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/aeroway/apron.json -------------------------------------------------------------------------------- /data/presets/presets/aeroway/gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/aeroway/gate.json -------------------------------------------------------------------------------- /data/presets/presets/aeroway/hangar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/aeroway/hangar.json -------------------------------------------------------------------------------- /data/presets/presets/aeroway/helipad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/aeroway/helipad.json -------------------------------------------------------------------------------- /data/presets/presets/aeroway/runway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/aeroway/runway.json -------------------------------------------------------------------------------- /data/presets/presets/aeroway/taxiway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/aeroway/taxiway.json -------------------------------------------------------------------------------- /data/presets/presets/aeroway/terminal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/aeroway/terminal.json -------------------------------------------------------------------------------- /data/presets/presets/amenity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/bank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/bank.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/bar.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/bench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/bench.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/bicycle_parking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/bicycle_parking.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/bicycle_rental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/bicycle_rental.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/cafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/cafe.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/car_wash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/car_wash.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/cinema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/cinema.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/college.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/college.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/courthouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/courthouse.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/embassy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/embassy.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/fast_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/fast_food.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/fire_station.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/fire_station.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/fountain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/fountain.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/fuel.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/grave_yard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/grave_yard.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/hospital.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/hospital.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/kindergarten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/kindergarten.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/library.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/marketplace.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/parking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/parking.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/pharmacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/pharmacy.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/place_of_worship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/place_of_worship.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/place_of_worship/christian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/place_of_worship/christian.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/place_of_worship/jewish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/place_of_worship/jewish.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/place_of_worship/muslim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/place_of_worship/muslim.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/police.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/police.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/post_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/post_box.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/post_office.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/post_office.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/pub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/pub.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/restaurant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/restaurant.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/school.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/school.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/swimming_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/swimming_pool.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/telephone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/telephone.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/theatre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/theatre.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/toilets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/toilets.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/townhall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/townhall.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/university.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/university.json -------------------------------------------------------------------------------- /data/presets/presets/amenity/waste_basket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/amenity/waste_basket.json -------------------------------------------------------------------------------- /data/presets/presets/barrier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/block.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/bollard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/bollard.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/cattle_grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/cattle_grid.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/city_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/city_wall.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/cycle_barrier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/cycle_barrier.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/ditch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/ditch.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/entrance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/entrance.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/fence.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/gate.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/hedge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/hedge.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/kissing_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/kissing_gate.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/lift_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/lift_gate.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/retaining_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/retaining_wall.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/stile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/stile.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/toll_booth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/toll_booth.json -------------------------------------------------------------------------------- /data/presets/presets/barrier/wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/barrier/wall.json -------------------------------------------------------------------------------- /data/presets/presets/boundary/administrative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/boundary/administrative.json -------------------------------------------------------------------------------- /data/presets/presets/building.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/building.json -------------------------------------------------------------------------------- /data/presets/presets/building/apartments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/building/apartments.json -------------------------------------------------------------------------------- /data/presets/presets/building/entrance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/building/entrance.json -------------------------------------------------------------------------------- /data/presets/presets/building/house.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/building/house.json -------------------------------------------------------------------------------- /data/presets/presets/emergency/phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/emergency/phone.json -------------------------------------------------------------------------------- /data/presets/presets/entrance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/entrance.json -------------------------------------------------------------------------------- /data/presets/presets/highway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway.json -------------------------------------------------------------------------------- /data/presets/presets/highway/bridleway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/bridleway.json -------------------------------------------------------------------------------- /data/presets/presets/highway/bus_stop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/bus_stop.json -------------------------------------------------------------------------------- /data/presets/presets/highway/crossing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/crossing.json -------------------------------------------------------------------------------- /data/presets/presets/highway/cycleway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/cycleway.json -------------------------------------------------------------------------------- /data/presets/presets/highway/footway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/footway.json -------------------------------------------------------------------------------- /data/presets/presets/highway/living_street.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/living_street.json -------------------------------------------------------------------------------- /data/presets/presets/highway/mini_roundabout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/mini_roundabout.json -------------------------------------------------------------------------------- /data/presets/presets/highway/motorway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/motorway.json -------------------------------------------------------------------------------- /data/presets/presets/highway/motorway_junction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/motorway_junction.json -------------------------------------------------------------------------------- /data/presets/presets/highway/motorway_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/motorway_link.json -------------------------------------------------------------------------------- /data/presets/presets/highway/path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/path.json -------------------------------------------------------------------------------- /data/presets/presets/highway/pedestrian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/pedestrian.json -------------------------------------------------------------------------------- /data/presets/presets/highway/primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/primary.json -------------------------------------------------------------------------------- /data/presets/presets/highway/primary_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/primary_link.json -------------------------------------------------------------------------------- /data/presets/presets/highway/residential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/residential.json -------------------------------------------------------------------------------- /data/presets/presets/highway/road.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/road.json -------------------------------------------------------------------------------- /data/presets/presets/highway/secondary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/secondary.json -------------------------------------------------------------------------------- /data/presets/presets/highway/secondary_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/secondary_link.json -------------------------------------------------------------------------------- /data/presets/presets/highway/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/service.json -------------------------------------------------------------------------------- /data/presets/presets/highway/service/alley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/service/alley.json -------------------------------------------------------------------------------- /data/presets/presets/highway/service/drive-through.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/service/drive-through.json -------------------------------------------------------------------------------- /data/presets/presets/highway/service/driveway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/service/driveway.json -------------------------------------------------------------------------------- /data/presets/presets/highway/service/emergency_access.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/service/emergency_access.json -------------------------------------------------------------------------------- /data/presets/presets/highway/service/parking_aisle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/service/parking_aisle.json -------------------------------------------------------------------------------- /data/presets/presets/highway/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/steps.json -------------------------------------------------------------------------------- /data/presets/presets/highway/tertiary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/tertiary.json -------------------------------------------------------------------------------- /data/presets/presets/highway/tertiary_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/tertiary_link.json -------------------------------------------------------------------------------- /data/presets/presets/highway/track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/track.json -------------------------------------------------------------------------------- /data/presets/presets/highway/traffic_signals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/traffic_signals.json -------------------------------------------------------------------------------- /data/presets/presets/highway/trunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/trunk.json -------------------------------------------------------------------------------- /data/presets/presets/highway/trunk_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/trunk_link.json -------------------------------------------------------------------------------- /data/presets/presets/highway/turning_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/turning_circle.json -------------------------------------------------------------------------------- /data/presets/presets/highway/unclassified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/highway/unclassified.json -------------------------------------------------------------------------------- /data/presets/presets/historic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/historic.json -------------------------------------------------------------------------------- /data/presets/presets/historic/archaeological_site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/historic/archaeological_site.json -------------------------------------------------------------------------------- /data/presets/presets/historic/boundary_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/historic/boundary_stone.json -------------------------------------------------------------------------------- /data/presets/presets/historic/castle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/historic/castle.json -------------------------------------------------------------------------------- /data/presets/presets/historic/memorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/historic/memorial.json -------------------------------------------------------------------------------- /data/presets/presets/historic/monument.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/historic/monument.json -------------------------------------------------------------------------------- /data/presets/presets/historic/ruins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/historic/ruins.json -------------------------------------------------------------------------------- /data/presets/presets/historic/wayside_cross.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/historic/wayside_cross.json -------------------------------------------------------------------------------- /data/presets/presets/historic/wayside_shrine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/historic/wayside_shrine.json -------------------------------------------------------------------------------- /data/presets/presets/landuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/allotments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/allotments.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/basin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/basin.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/cemetery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/cemetery.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/commercial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/commercial.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/construction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/construction.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/farm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/farm.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/farmyard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/farmyard.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/forest.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/grass.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/industrial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/industrial.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/meadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/meadow.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/orchard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/orchard.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/quarry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/quarry.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/residential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/residential.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/retail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/retail.json -------------------------------------------------------------------------------- /data/presets/presets/landuse/vineyard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/landuse/vineyard.json -------------------------------------------------------------------------------- /data/presets/presets/leisure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/garden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/garden.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/golf_course.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/golf_course.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/marina.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/marina.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/park.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/park.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/pitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/pitch.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/pitch/american_football.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/pitch/american_football.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/pitch/baseball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/pitch/baseball.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/pitch/basketball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/pitch/basketball.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/pitch/soccer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/pitch/soccer.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/pitch/tennis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/pitch/tennis.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/pitch/volleyball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/pitch/volleyball.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/playground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/playground.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/slipway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/slipway.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/stadium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/stadium.json -------------------------------------------------------------------------------- /data/presets/presets/leisure/swimming_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/leisure/swimming_pool.json -------------------------------------------------------------------------------- /data/presets/presets/man_made.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/breakwater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/breakwater.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/cutline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/cutline.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/lighthouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/lighthouse.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/pier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/pier.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/pipeline.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/survey_point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/survey_point.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/tower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/tower.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/wastewater_plant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/wastewater_plant.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/water_tower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/water_tower.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/water_well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/water_well.json -------------------------------------------------------------------------------- /data/presets/presets/man_made/water_works.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/man_made/water_works.json -------------------------------------------------------------------------------- /data/presets/presets/natural.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural.json -------------------------------------------------------------------------------- /data/presets/presets/natural/bay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/bay.json -------------------------------------------------------------------------------- /data/presets/presets/natural/beach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/beach.json -------------------------------------------------------------------------------- /data/presets/presets/natural/cliff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/cliff.json -------------------------------------------------------------------------------- /data/presets/presets/natural/coastline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/coastline.json -------------------------------------------------------------------------------- /data/presets/presets/natural/glacier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/glacier.json -------------------------------------------------------------------------------- /data/presets/presets/natural/grassland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/grassland.json -------------------------------------------------------------------------------- /data/presets/presets/natural/heath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/heath.json -------------------------------------------------------------------------------- /data/presets/presets/natural/peak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/peak.json -------------------------------------------------------------------------------- /data/presets/presets/natural/scrub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/scrub.json -------------------------------------------------------------------------------- /data/presets/presets/natural/spring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/spring.json -------------------------------------------------------------------------------- /data/presets/presets/natural/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/tree.json -------------------------------------------------------------------------------- /data/presets/presets/natural/water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/water.json -------------------------------------------------------------------------------- /data/presets/presets/natural/water/lake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/water/lake.json -------------------------------------------------------------------------------- /data/presets/presets/natural/water/pond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/water/pond.json -------------------------------------------------------------------------------- /data/presets/presets/natural/water/reservoir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/water/reservoir.json -------------------------------------------------------------------------------- /data/presets/presets/natural/wetland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/wetland.json -------------------------------------------------------------------------------- /data/presets/presets/natural/wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/natural/wood.json -------------------------------------------------------------------------------- /data/presets/presets/office.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/office.json -------------------------------------------------------------------------------- /data/presets/presets/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/other.json -------------------------------------------------------------------------------- /data/presets/presets/other_area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/other_area.json -------------------------------------------------------------------------------- /data/presets/presets/place.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/place.json -------------------------------------------------------------------------------- /data/presets/presets/place/city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/place/city.json -------------------------------------------------------------------------------- /data/presets/presets/place/hamlet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/place/hamlet.json -------------------------------------------------------------------------------- /data/presets/presets/place/island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/place/island.json -------------------------------------------------------------------------------- /data/presets/presets/place/isolated_dwelling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/place/isolated_dwelling.json -------------------------------------------------------------------------------- /data/presets/presets/place/locality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/place/locality.json -------------------------------------------------------------------------------- /data/presets/presets/place/town.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/place/town.json -------------------------------------------------------------------------------- /data/presets/presets/place/village.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/place/village.json -------------------------------------------------------------------------------- /data/presets/presets/power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/power.json -------------------------------------------------------------------------------- /data/presets/presets/power/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/power/generator.json -------------------------------------------------------------------------------- /data/presets/presets/power/line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/power/line.json -------------------------------------------------------------------------------- /data/presets/presets/power/pole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/power/pole.json -------------------------------------------------------------------------------- /data/presets/presets/power/sub_station.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/power/sub_station.json -------------------------------------------------------------------------------- /data/presets/presets/power/tower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/power/tower.json -------------------------------------------------------------------------------- /data/presets/presets/power/transformer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/power/transformer.json -------------------------------------------------------------------------------- /data/presets/presets/railway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway.json -------------------------------------------------------------------------------- /data/presets/presets/railway/abandoned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/abandoned.json -------------------------------------------------------------------------------- /data/presets/presets/railway/disused.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/disused.json -------------------------------------------------------------------------------- /data/presets/presets/railway/level_crossing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/level_crossing.json -------------------------------------------------------------------------------- /data/presets/presets/railway/monorail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/monorail.json -------------------------------------------------------------------------------- /data/presets/presets/railway/platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/platform.json -------------------------------------------------------------------------------- /data/presets/presets/railway/rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/rail.json -------------------------------------------------------------------------------- /data/presets/presets/railway/station.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/station.json -------------------------------------------------------------------------------- /data/presets/presets/railway/subway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/subway.json -------------------------------------------------------------------------------- /data/presets/presets/railway/subway_entrance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/subway_entrance.json -------------------------------------------------------------------------------- /data/presets/presets/railway/tram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/railway/tram.json -------------------------------------------------------------------------------- /data/presets/presets/shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop.json -------------------------------------------------------------------------------- /data/presets/presets/shop/alcohol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/alcohol.json -------------------------------------------------------------------------------- /data/presets/presets/shop/bakery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/bakery.json -------------------------------------------------------------------------------- /data/presets/presets/shop/beauty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/beauty.json -------------------------------------------------------------------------------- /data/presets/presets/shop/beverages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/beverages.json -------------------------------------------------------------------------------- /data/presets/presets/shop/bicycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/bicycle.json -------------------------------------------------------------------------------- /data/presets/presets/shop/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/books.json -------------------------------------------------------------------------------- /data/presets/presets/shop/boutique.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/boutique.json -------------------------------------------------------------------------------- /data/presets/presets/shop/butcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/butcher.json -------------------------------------------------------------------------------- /data/presets/presets/shop/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/car.json -------------------------------------------------------------------------------- /data/presets/presets/shop/car_parts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/car_parts.json -------------------------------------------------------------------------------- /data/presets/presets/shop/car_repair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/car_repair.json -------------------------------------------------------------------------------- /data/presets/presets/shop/chemist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/chemist.json -------------------------------------------------------------------------------- /data/presets/presets/shop/clothes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/clothes.json -------------------------------------------------------------------------------- /data/presets/presets/shop/computer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/computer.json -------------------------------------------------------------------------------- /data/presets/presets/shop/confectionery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/confectionery.json -------------------------------------------------------------------------------- /data/presets/presets/shop/convenience.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/convenience.json -------------------------------------------------------------------------------- /data/presets/presets/shop/deli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/deli.json -------------------------------------------------------------------------------- /data/presets/presets/shop/department_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/department_store.json -------------------------------------------------------------------------------- /data/presets/presets/shop/doityourself.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/doityourself.json -------------------------------------------------------------------------------- /data/presets/presets/shop/dry_cleaning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/dry_cleaning.json -------------------------------------------------------------------------------- /data/presets/presets/shop/electronics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/electronics.json -------------------------------------------------------------------------------- /data/presets/presets/shop/fishmonger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/fishmonger.json -------------------------------------------------------------------------------- /data/presets/presets/shop/florist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/florist.json -------------------------------------------------------------------------------- /data/presets/presets/shop/furniture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/furniture.json -------------------------------------------------------------------------------- /data/presets/presets/shop/garden_centre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/garden_centre.json -------------------------------------------------------------------------------- /data/presets/presets/shop/gift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/gift.json -------------------------------------------------------------------------------- /data/presets/presets/shop/greengrocer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/greengrocer.json -------------------------------------------------------------------------------- /data/presets/presets/shop/hairdresser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/hairdresser.json -------------------------------------------------------------------------------- /data/presets/presets/shop/hardware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/hardware.json -------------------------------------------------------------------------------- /data/presets/presets/shop/hifi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/hifi.json -------------------------------------------------------------------------------- /data/presets/presets/shop/jewelry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/jewelry.json -------------------------------------------------------------------------------- /data/presets/presets/shop/kiosk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/kiosk.json -------------------------------------------------------------------------------- /data/presets/presets/shop/laundry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/laundry.json -------------------------------------------------------------------------------- /data/presets/presets/shop/mall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/mall.json -------------------------------------------------------------------------------- /data/presets/presets/shop/mobile_phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/mobile_phone.json -------------------------------------------------------------------------------- /data/presets/presets/shop/motorcycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/motorcycle.json -------------------------------------------------------------------------------- /data/presets/presets/shop/music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/music.json -------------------------------------------------------------------------------- /data/presets/presets/shop/newsagent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/newsagent.json -------------------------------------------------------------------------------- /data/presets/presets/shop/optician.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/optician.json -------------------------------------------------------------------------------- /data/presets/presets/shop/outdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/outdoor.json -------------------------------------------------------------------------------- /data/presets/presets/shop/pet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/pet.json -------------------------------------------------------------------------------- /data/presets/presets/shop/shoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/shoes.json -------------------------------------------------------------------------------- /data/presets/presets/shop/sports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/sports.json -------------------------------------------------------------------------------- /data/presets/presets/shop/stationery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/stationery.json -------------------------------------------------------------------------------- /data/presets/presets/shop/supermarket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/supermarket.json -------------------------------------------------------------------------------- /data/presets/presets/shop/toys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/toys.json -------------------------------------------------------------------------------- /data/presets/presets/shop/travel_agency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/travel_agency.json -------------------------------------------------------------------------------- /data/presets/presets/shop/tyres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/tyres.json -------------------------------------------------------------------------------- /data/presets/presets/shop/vacant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/vacant.json -------------------------------------------------------------------------------- /data/presets/presets/shop/variety_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/variety_store.json -------------------------------------------------------------------------------- /data/presets/presets/shop/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/shop/video.json -------------------------------------------------------------------------------- /data/presets/presets/tourism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/alpine_hut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/alpine_hut.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/artwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/artwork.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/attraction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/attraction.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/camp_site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/camp_site.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/caravan_site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/caravan_site.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/chalet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/chalet.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/guest_house.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/guest_house.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/hostel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/hostel.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/hotel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/hotel.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/information.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/information.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/motel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/motel.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/museum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/museum.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/picnic_site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/picnic_site.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/theme_park.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/theme_park.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/viewpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/viewpoint.json -------------------------------------------------------------------------------- /data/presets/presets/tourism/zoo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/tourism/zoo.json -------------------------------------------------------------------------------- /data/presets/presets/waterway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/waterway.json -------------------------------------------------------------------------------- /data/presets/presets/waterway/canal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/waterway/canal.json -------------------------------------------------------------------------------- /data/presets/presets/waterway/dam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/waterway/dam.json -------------------------------------------------------------------------------- /data/presets/presets/waterway/ditch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/waterway/ditch.json -------------------------------------------------------------------------------- /data/presets/presets/waterway/drain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/waterway/drain.json -------------------------------------------------------------------------------- /data/presets/presets/waterway/river.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/waterway/river.json -------------------------------------------------------------------------------- /data/presets/presets/waterway/riverbank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/waterway/riverbank.json -------------------------------------------------------------------------------- /data/presets/presets/waterway/stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/waterway/stream.json -------------------------------------------------------------------------------- /data/presets/presets/waterway/weir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/presets/waterway/weir.json -------------------------------------------------------------------------------- /data/presets/schema/field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/schema/field.json -------------------------------------------------------------------------------- /data/presets/schema/preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/presets/schema/preset.json -------------------------------------------------------------------------------- /data/update_locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/update_locales.js -------------------------------------------------------------------------------- /data/wikipedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/data/wikipedia.json -------------------------------------------------------------------------------- /dist/img/background-pattern-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/background-pattern-1.png -------------------------------------------------------------------------------- /dist/img/background-pattern-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/background-pattern-opacity.png -------------------------------------------------------------------------------- /dist/img/bing_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/bing_maps.png -------------------------------------------------------------------------------- /dist/img/cursor-draw-connect-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-draw-connect-line.png -------------------------------------------------------------------------------- /dist/img/cursor-draw-connect-line2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-draw-connect-line2x.png -------------------------------------------------------------------------------- /dist/img/cursor-draw-connect-vertex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-draw-connect-vertex.png -------------------------------------------------------------------------------- /dist/img/cursor-draw-connect-vertex2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-draw-connect-vertex2x.png -------------------------------------------------------------------------------- /dist/img/cursor-draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-draw.png -------------------------------------------------------------------------------- /dist/img/cursor-draw2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-draw2x.png -------------------------------------------------------------------------------- /dist/img/cursor-grab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-grab.png -------------------------------------------------------------------------------- /dist/img/cursor-grab2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-grab2x.png -------------------------------------------------------------------------------- /dist/img/cursor-grabbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-grabbing.png -------------------------------------------------------------------------------- /dist/img/cursor-grabbing2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-grabbing2x.png -------------------------------------------------------------------------------- /dist/img/cursor-pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-pointer.png -------------------------------------------------------------------------------- /dist/img/cursor-pointer2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-pointer2x.png -------------------------------------------------------------------------------- /dist/img/cursor-pointing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-pointing.png -------------------------------------------------------------------------------- /dist/img/cursor-pointing2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-pointing2x.png -------------------------------------------------------------------------------- /dist/img/cursor-select-acting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-acting.png -------------------------------------------------------------------------------- /dist/img/cursor-select-acting2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-acting2x.png -------------------------------------------------------------------------------- /dist/img/cursor-select-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-add.png -------------------------------------------------------------------------------- /dist/img/cursor-select-add2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-add2x.png -------------------------------------------------------------------------------- /dist/img/cursor-select-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-area.png -------------------------------------------------------------------------------- /dist/img/cursor-select-area2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-area2x.png -------------------------------------------------------------------------------- /dist/img/cursor-select-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-line.png -------------------------------------------------------------------------------- /dist/img/cursor-select-line2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-line2x.png -------------------------------------------------------------------------------- /dist/img/cursor-select-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-point.png -------------------------------------------------------------------------------- /dist/img/cursor-select-point2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-point2x.png -------------------------------------------------------------------------------- /dist/img/cursor-select-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-remove.png -------------------------------------------------------------------------------- /dist/img/cursor-select-remove2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-remove2x.png -------------------------------------------------------------------------------- /dist/img/cursor-select-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-split.png -------------------------------------------------------------------------------- /dist/img/cursor-select-split2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-split2x.png -------------------------------------------------------------------------------- /dist/img/cursor-select-vertex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-vertex.png -------------------------------------------------------------------------------- /dist/img/cursor-select-vertex2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/cursor-select-vertex2x.png -------------------------------------------------------------------------------- /dist/img/line-presets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/line-presets.png -------------------------------------------------------------------------------- /dist/img/loader-black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/loader-black.gif -------------------------------------------------------------------------------- /dist/img/loader-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/loader-white.gif -------------------------------------------------------------------------------- /dist/img/loader_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/loader_bg.gif -------------------------------------------------------------------------------- /dist/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/logo.png -------------------------------------------------------------------------------- /dist/img/maki-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/maki-sprite.png -------------------------------------------------------------------------------- /dist/img/mini-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/mini-loader.gif -------------------------------------------------------------------------------- /dist/img/pattern/cemetery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/pattern/cemetery.png -------------------------------------------------------------------------------- /dist/img/pattern/construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/pattern/construction.png -------------------------------------------------------------------------------- /dist/img/pattern/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/pattern/dots.png -------------------------------------------------------------------------------- /dist/img/pattern/farmland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/pattern/farmland.png -------------------------------------------------------------------------------- /dist/img/pattern/orchard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/pattern/orchard.png -------------------------------------------------------------------------------- /dist/img/pattern/vineyard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/pattern/vineyard.png -------------------------------------------------------------------------------- /dist/img/pattern/wetland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/pattern/wetland.png -------------------------------------------------------------------------------- /dist/img/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/img/sprite.svg -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/land.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/land.html -------------------------------------------------------------------------------- /dist/locales/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/af.json -------------------------------------------------------------------------------- /dist/locales/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/bs.json -------------------------------------------------------------------------------- /dist/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/ca.json -------------------------------------------------------------------------------- /dist/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/cs.json -------------------------------------------------------------------------------- /dist/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/da.json -------------------------------------------------------------------------------- /dist/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/de.json -------------------------------------------------------------------------------- /dist/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/en.json -------------------------------------------------------------------------------- /dist/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/es.json -------------------------------------------------------------------------------- /dist/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/fr.json -------------------------------------------------------------------------------- /dist/locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/hr.json -------------------------------------------------------------------------------- /dist/locales/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/is.json -------------------------------------------------------------------------------- /dist/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/it.json -------------------------------------------------------------------------------- /dist/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/ja.json -------------------------------------------------------------------------------- /dist/locales/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/lv.json -------------------------------------------------------------------------------- /dist/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/nl.json -------------------------------------------------------------------------------- /dist/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/pl.json -------------------------------------------------------------------------------- /dist/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/pt.json -------------------------------------------------------------------------------- /dist/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/ru.json -------------------------------------------------------------------------------- /dist/locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/sk.json -------------------------------------------------------------------------------- /dist/locales/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/sr.json -------------------------------------------------------------------------------- /dist/locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/sv.json -------------------------------------------------------------------------------- /dist/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/tr.json -------------------------------------------------------------------------------- /dist/locales/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/uk.json -------------------------------------------------------------------------------- /dist/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/vi.json -------------------------------------------------------------------------------- /dist/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/zh.json -------------------------------------------------------------------------------- /dist/locales/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/dist/locales/zh_TW.json -------------------------------------------------------------------------------- /docs/coding_standards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/docs/coding_standards.txt -------------------------------------------------------------------------------- /docs/img/geocoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/docs/img/geocoder.png -------------------------------------------------------------------------------- /docs/img/modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/docs/img/modes.png -------------------------------------------------------------------------------- /docs/img/operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/docs/img/operations.png -------------------------------------------------------------------------------- /iD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/iD.js -------------------------------------------------------------------------------- /iD.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/iD.min.js -------------------------------------------------------------------------------- /img/office-building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/img/office-building.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/index.html -------------------------------------------------------------------------------- /js/id/actions.js: -------------------------------------------------------------------------------- 1 | iD.actions = {}; 2 | -------------------------------------------------------------------------------- /js/id/actions/add_entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/add_entity.js -------------------------------------------------------------------------------- /js/id/actions/add_midpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/add_midpoint.js -------------------------------------------------------------------------------- /js/id/actions/add_vertex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/add_vertex.js -------------------------------------------------------------------------------- /js/id/actions/change_tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/change_tags.js -------------------------------------------------------------------------------- /js/id/actions/circularize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/circularize.js -------------------------------------------------------------------------------- /js/id/actions/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/connect.js -------------------------------------------------------------------------------- /js/id/actions/delete_multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/delete_multiple.js -------------------------------------------------------------------------------- /js/id/actions/delete_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/delete_node.js -------------------------------------------------------------------------------- /js/id/actions/delete_relation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/delete_relation.js -------------------------------------------------------------------------------- /js/id/actions/delete_way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/delete_way.js -------------------------------------------------------------------------------- /js/id/actions/deprecate_tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/deprecate_tags.js -------------------------------------------------------------------------------- /js/id/actions/disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/disconnect.js -------------------------------------------------------------------------------- /js/id/actions/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/join.js -------------------------------------------------------------------------------- /js/id/actions/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/merge.js -------------------------------------------------------------------------------- /js/id/actions/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/move.js -------------------------------------------------------------------------------- /js/id/actions/move_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/move_node.js -------------------------------------------------------------------------------- /js/id/actions/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/noop.js -------------------------------------------------------------------------------- /js/id/actions/orthogonalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/orthogonalize.js -------------------------------------------------------------------------------- /js/id/actions/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/reverse.js -------------------------------------------------------------------------------- /js/id/actions/rotate_way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/rotate_way.js -------------------------------------------------------------------------------- /js/id/actions/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/actions/split.js -------------------------------------------------------------------------------- /js/id/behavior.js: -------------------------------------------------------------------------------- 1 | iD.behavior = {}; 2 | -------------------------------------------------------------------------------- /js/id/behavior/accept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/behavior/accept.js -------------------------------------------------------------------------------- /js/id/behavior/add_way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/behavior/add_way.js -------------------------------------------------------------------------------- /js/id/behavior/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/behavior/drag.js -------------------------------------------------------------------------------- /js/id/behavior/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/behavior/draw.js -------------------------------------------------------------------------------- /js/id/behavior/draw_way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/behavior/draw_way.js -------------------------------------------------------------------------------- /js/id/behavior/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/behavior/hash.js -------------------------------------------------------------------------------- /js/id/behavior/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/behavior/hover.js -------------------------------------------------------------------------------- /js/id/behavior/lasso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/behavior/lasso.js -------------------------------------------------------------------------------- /js/id/behavior/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/behavior/select.js -------------------------------------------------------------------------------- /js/id/core/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/core/connection.js -------------------------------------------------------------------------------- /js/id/core/difference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/core/difference.js -------------------------------------------------------------------------------- /js/id/core/entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/core/entity.js -------------------------------------------------------------------------------- /js/id/core/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/core/graph.js -------------------------------------------------------------------------------- /js/id/core/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/core/history.js -------------------------------------------------------------------------------- /js/id/core/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/core/node.js -------------------------------------------------------------------------------- /js/id/core/relation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/core/relation.js -------------------------------------------------------------------------------- /js/id/core/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/core/tree.js -------------------------------------------------------------------------------- /js/id/core/way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/core/way.js -------------------------------------------------------------------------------- /js/id/end.js: -------------------------------------------------------------------------------- 1 | })(); 2 | -------------------------------------------------------------------------------- /js/id/floors.js: -------------------------------------------------------------------------------- 1 | iD.floors = {}; 2 | -------------------------------------------------------------------------------- /js/id/floors/basement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/floors/basement.js -------------------------------------------------------------------------------- /js/id/floors/first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/floors/first.js -------------------------------------------------------------------------------- /js/id/floors/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/floors/other.js -------------------------------------------------------------------------------- /js/id/floors/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/floors/second.js -------------------------------------------------------------------------------- /js/id/floors/third.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/floors/third.js -------------------------------------------------------------------------------- /js/id/geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/geo.js -------------------------------------------------------------------------------- /js/id/geo/extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/geo/extent.js -------------------------------------------------------------------------------- /js/id/geo/multipolygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/geo/multipolygon.js -------------------------------------------------------------------------------- /js/id/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/id.js -------------------------------------------------------------------------------- /js/id/modes.js: -------------------------------------------------------------------------------- 1 | iD.modes = {}; 2 | -------------------------------------------------------------------------------- /js/id/modes/add_area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/add_area.js -------------------------------------------------------------------------------- /js/id/modes/add_line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/add_line.js -------------------------------------------------------------------------------- /js/id/modes/add_point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/add_point.js -------------------------------------------------------------------------------- /js/id/modes/browse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/browse.js -------------------------------------------------------------------------------- /js/id/modes/drag_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/drag_node.js -------------------------------------------------------------------------------- /js/id/modes/draw_area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/draw_area.js -------------------------------------------------------------------------------- /js/id/modes/draw_line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/draw_line.js -------------------------------------------------------------------------------- /js/id/modes/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/move.js -------------------------------------------------------------------------------- /js/id/modes/rotate_way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/rotate_way.js -------------------------------------------------------------------------------- /js/id/modes/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/modes/select.js -------------------------------------------------------------------------------- /js/id/operations.js: -------------------------------------------------------------------------------- 1 | iD.operations = {}; 2 | -------------------------------------------------------------------------------- /js/id/operations/circularize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/operations/circularize.js -------------------------------------------------------------------------------- /js/id/operations/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/operations/delete.js -------------------------------------------------------------------------------- /js/id/operations/disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/operations/disconnect.js -------------------------------------------------------------------------------- /js/id/operations/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/operations/merge.js -------------------------------------------------------------------------------- /js/id/operations/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/operations/move.js -------------------------------------------------------------------------------- /js/id/operations/orthogonalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/operations/orthogonalize.js -------------------------------------------------------------------------------- /js/id/operations/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/operations/reverse.js -------------------------------------------------------------------------------- /js/id/operations/rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/operations/rotate.js -------------------------------------------------------------------------------- /js/id/operations/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/operations/split.js -------------------------------------------------------------------------------- /js/id/presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/presets.js -------------------------------------------------------------------------------- /js/id/presets/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/presets/category.js -------------------------------------------------------------------------------- /js/id/presets/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/presets/collection.js -------------------------------------------------------------------------------- /js/id/presets/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/presets/field.js -------------------------------------------------------------------------------- /js/id/presets/preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/presets/preset.js -------------------------------------------------------------------------------- /js/id/renderer/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/renderer/background.js -------------------------------------------------------------------------------- /js/id/renderer/background_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/renderer/background_source.js -------------------------------------------------------------------------------- /js/id/renderer/localgpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/renderer/localgpx.js -------------------------------------------------------------------------------- /js/id/renderer/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/renderer/map.js -------------------------------------------------------------------------------- /js/id/renderer/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/renderer/overlay.js -------------------------------------------------------------------------------- /js/id/services/taginfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/services/taginfo.js -------------------------------------------------------------------------------- /js/id/services/wikipedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/services/wikipedia.js -------------------------------------------------------------------------------- /js/id/start.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | -------------------------------------------------------------------------------- /js/id/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg.js -------------------------------------------------------------------------------- /js/id/svg/areas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg/areas.js -------------------------------------------------------------------------------- /js/id/svg/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg/labels.js -------------------------------------------------------------------------------- /js/id/svg/lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg/lines.js -------------------------------------------------------------------------------- /js/id/svg/member_classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg/member_classes.js -------------------------------------------------------------------------------- /js/id/svg/midpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg/midpoints.js -------------------------------------------------------------------------------- /js/id/svg/points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg/points.js -------------------------------------------------------------------------------- /js/id/svg/surface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg/surface.js -------------------------------------------------------------------------------- /js/id/svg/tag_classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg/tag_classes.js -------------------------------------------------------------------------------- /js/id/svg/vertices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/svg/vertices.js -------------------------------------------------------------------------------- /js/id/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui.js -------------------------------------------------------------------------------- /js/id/ui/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/account.js -------------------------------------------------------------------------------- /js/id/ui/attribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/attribution.js -------------------------------------------------------------------------------- /js/id/ui/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/background.js -------------------------------------------------------------------------------- /js/id/ui/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/cmd.js -------------------------------------------------------------------------------- /js/id/ui/commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/commit.js -------------------------------------------------------------------------------- /js/id/ui/confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/confirm.js -------------------------------------------------------------------------------- /js/id/ui/contributors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/contributors.js -------------------------------------------------------------------------------- /js/id/ui/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/flash.js -------------------------------------------------------------------------------- /js/id/ui/floors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/floors.js -------------------------------------------------------------------------------- /js/id/ui/geocoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/geocoder.js -------------------------------------------------------------------------------- /js/id/ui/geolocate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/geolocate.js -------------------------------------------------------------------------------- /js/id/ui/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/help.js -------------------------------------------------------------------------------- /js/id/ui/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/inspector.js -------------------------------------------------------------------------------- /js/id/ui/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/intro.js -------------------------------------------------------------------------------- /js/id/ui/intro/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/intro/area.js -------------------------------------------------------------------------------- /js/id/ui/intro/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/intro/line.js -------------------------------------------------------------------------------- /js/id/ui/intro/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/intro/navigation.js -------------------------------------------------------------------------------- /js/id/ui/intro/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/intro/point.js -------------------------------------------------------------------------------- /js/id/ui/intro/start_editing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/intro/start_editing.js -------------------------------------------------------------------------------- /js/id/ui/lasso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/lasso.js -------------------------------------------------------------------------------- /js/id/ui/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/loading.js -------------------------------------------------------------------------------- /js/id/ui/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/modal.js -------------------------------------------------------------------------------- /js/id/ui/modes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/modes.js -------------------------------------------------------------------------------- /js/id/ui/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/notice.js -------------------------------------------------------------------------------- /js/id/ui/overlay-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/overlay-ui.js -------------------------------------------------------------------------------- /js/id/ui/preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset.js -------------------------------------------------------------------------------- /js/id/ui/preset/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/access.js -------------------------------------------------------------------------------- /js/id/ui/preset/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/address.js -------------------------------------------------------------------------------- /js/id/ui/preset/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/check.js -------------------------------------------------------------------------------- /js/id/ui/preset/combo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/combo.js -------------------------------------------------------------------------------- /js/id/ui/preset/defaultcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/defaultcheck.js -------------------------------------------------------------------------------- /js/id/ui/preset/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/input.js -------------------------------------------------------------------------------- /js/id/ui/preset/localized.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/localized.js -------------------------------------------------------------------------------- /js/id/ui/preset/maxspeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/maxspeed.js -------------------------------------------------------------------------------- /js/id/ui/preset/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/radio.js -------------------------------------------------------------------------------- /js/id/ui/preset/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/textarea.js -------------------------------------------------------------------------------- /js/id/ui/preset/wikipedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset/wikipedia.js -------------------------------------------------------------------------------- /js/id/ui/preset_grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset_grid.js -------------------------------------------------------------------------------- /js/id/ui/preset_icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/preset_icon.js -------------------------------------------------------------------------------- /js/id/ui/radial_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/radial_menu.js -------------------------------------------------------------------------------- /js/id/ui/restore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/restore.js -------------------------------------------------------------------------------- /js/id/ui/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/save.js -------------------------------------------------------------------------------- /js/id/ui/source_switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/source_switch.js -------------------------------------------------------------------------------- /js/id/ui/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/spinner.js -------------------------------------------------------------------------------- /js/id/ui/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/splash.js -------------------------------------------------------------------------------- /js/id/ui/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/status.js -------------------------------------------------------------------------------- /js/id/ui/success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/success.js -------------------------------------------------------------------------------- /js/id/ui/tag_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/tag_editor.js -------------------------------------------------------------------------------- /js/id/ui/tag_reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/tag_reference.js -------------------------------------------------------------------------------- /js/id/ui/taglist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/taglist.js -------------------------------------------------------------------------------- /js/id/ui/tail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/tail.js -------------------------------------------------------------------------------- /js/id/ui/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/toggle.js -------------------------------------------------------------------------------- /js/id/ui/undo_redo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/undo_redo.js -------------------------------------------------------------------------------- /js/id/ui/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/ui/zoom.js -------------------------------------------------------------------------------- /js/id/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/util.js -------------------------------------------------------------------------------- /js/id/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/id/validate.js -------------------------------------------------------------------------------- /js/lib/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/bootstrap-tooltip.js -------------------------------------------------------------------------------- /js/lib/d3-compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3-compat.js -------------------------------------------------------------------------------- /js/lib/d3.combobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.combobox.js -------------------------------------------------------------------------------- /js/lib/d3.curtain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.curtain.js -------------------------------------------------------------------------------- /js/lib/d3.geo.tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.geo.tile.js -------------------------------------------------------------------------------- /js/lib/d3.jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.jsonp.js -------------------------------------------------------------------------------- /js/lib/d3.keybinding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.keybinding.js -------------------------------------------------------------------------------- /js/lib/d3.one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.one.js -------------------------------------------------------------------------------- /js/lib/d3.size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.size.js -------------------------------------------------------------------------------- /js/lib/d3.trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.trigger.js -------------------------------------------------------------------------------- /js/lib/d3.typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.typeahead.js -------------------------------------------------------------------------------- /js/lib/d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/d3.v3.js -------------------------------------------------------------------------------- /js/lib/jxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/jxon.js -------------------------------------------------------------------------------- /js/lib/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/locale.js -------------------------------------------------------------------------------- /js/lib/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/lodash.js -------------------------------------------------------------------------------- /js/lib/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/marked.js -------------------------------------------------------------------------------- /js/lib/osmauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/osmauth.js -------------------------------------------------------------------------------- /js/lib/rtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/rtree.js -------------------------------------------------------------------------------- /js/lib/togeojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/js/lib/togeojson.js -------------------------------------------------------------------------------- /land.html: -------------------------------------------------------------------------------- 1 | dist/land.html -------------------------------------------------------------------------------- /ofp-editor.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/ofp-editor.iml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/package.json -------------------------------------------------------------------------------- /svg/area-presets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/area-presets.svg -------------------------------------------------------------------------------- /svg/cursors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/cursors.svg -------------------------------------------------------------------------------- /svg/design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/design.svg -------------------------------------------------------------------------------- /svg/landuse-colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/landuse-colors.svg -------------------------------------------------------------------------------- /svg/landuse-patterns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/landuse-patterns.svg -------------------------------------------------------------------------------- /svg/line-presets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/line-presets.svg -------------------------------------------------------------------------------- /svg/loader.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/loader.psd -------------------------------------------------------------------------------- /svg/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/loader.svg -------------------------------------------------------------------------------- /svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/logo.svg -------------------------------------------------------------------------------- /svg/map-colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/map-colors.svg -------------------------------------------------------------------------------- /svg/mini-loader.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/mini-loader.psd -------------------------------------------------------------------------------- /svg/mini-loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/mini-loader.svg -------------------------------------------------------------------------------- /svg/preset-sketch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/preset-sketch.svg -------------------------------------------------------------------------------- /svg/radial-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/radial-menu.svg -------------------------------------------------------------------------------- /svg/renders/basic-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/basic-ui.png -------------------------------------------------------------------------------- /svg/renders/layers-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/layers-more.png -------------------------------------------------------------------------------- /svg/renders/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/layers.png -------------------------------------------------------------------------------- /svg/renders/layerswitcher-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/layerswitcher-default.png -------------------------------------------------------------------------------- /svg/renders/layerswitcher-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/layerswitcher-expand.png -------------------------------------------------------------------------------- /svg/renders/layerswitcher-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/layerswitcher-expanded.png -------------------------------------------------------------------------------- /svg/renders/layerswitcher-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/layerswitcher-hover.png -------------------------------------------------------------------------------- /svg/renders/layerswitcher-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/layerswitcher-inactive.png -------------------------------------------------------------------------------- /svg/renders/layerswitcher-simplified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/layerswitcher-simplified.png -------------------------------------------------------------------------------- /svg/renders/opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/renders/opacity.png -------------------------------------------------------------------------------- /svg/ui-mockups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/svg/ui-mockups.svg -------------------------------------------------------------------------------- /test/bench/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/bench/benchmark.js -------------------------------------------------------------------------------- /test/bench/event-binding-cost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/bench/event-binding-cost.html -------------------------------------------------------------------------------- /test/bench/node-xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/bench/node-xml.html -------------------------------------------------------------------------------- /test/bench/removing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/bench/removing.html -------------------------------------------------------------------------------- /test/bench/translate-rounding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/bench/translate-rounding.html -------------------------------------------------------------------------------- /test/bench/translate-vs-matrix-webkit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/bench/translate-vs-matrix-webkit.html -------------------------------------------------------------------------------- /test/bench/translate-vs-matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/bench/translate-vs-matrix.html -------------------------------------------------------------------------------- /test/css: -------------------------------------------------------------------------------- 1 | ../css -------------------------------------------------------------------------------- /test/data/node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/data/node.xml -------------------------------------------------------------------------------- /test/data/way.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/data/way.xml -------------------------------------------------------------------------------- /test/img: -------------------------------------------------------------------------------- 1 | ../dist/img/ -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index_packaged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/index_packaged.html -------------------------------------------------------------------------------- /test/lib/bind-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/lib/bind-shim.js -------------------------------------------------------------------------------- /test/rendering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/rendering.html -------------------------------------------------------------------------------- /test/spec/actions/add_entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/add_entity.js -------------------------------------------------------------------------------- /test/spec/actions/add_midpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/add_midpoint.js -------------------------------------------------------------------------------- /test/spec/actions/change_tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/change_tags.js -------------------------------------------------------------------------------- /test/spec/actions/circularize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/circularize.js -------------------------------------------------------------------------------- /test/spec/actions/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/connect.js -------------------------------------------------------------------------------- /test/spec/actions/delete_multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/delete_multiple.js -------------------------------------------------------------------------------- /test/spec/actions/delete_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/delete_node.js -------------------------------------------------------------------------------- /test/spec/actions/delete_relation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/delete_relation.js -------------------------------------------------------------------------------- /test/spec/actions/delete_way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/delete_way.js -------------------------------------------------------------------------------- /test/spec/actions/disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/disconnect.js -------------------------------------------------------------------------------- /test/spec/actions/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/join.js -------------------------------------------------------------------------------- /test/spec/actions/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/merge.js -------------------------------------------------------------------------------- /test/spec/actions/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/move.js -------------------------------------------------------------------------------- /test/spec/actions/move_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/move_node.js -------------------------------------------------------------------------------- /test/spec/actions/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/noop.js -------------------------------------------------------------------------------- /test/spec/actions/orthogonalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/orthogonalize.js -------------------------------------------------------------------------------- /test/spec/actions/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/reverse.js -------------------------------------------------------------------------------- /test/spec/actions/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/actions/split.js -------------------------------------------------------------------------------- /test/spec/behavior/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/behavior/hash.js -------------------------------------------------------------------------------- /test/spec/behavior/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/behavior/hover.js -------------------------------------------------------------------------------- /test/spec/behavior/lasso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/behavior/lasso.js -------------------------------------------------------------------------------- /test/spec/behavior/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/behavior/select.js -------------------------------------------------------------------------------- /test/spec/core/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/core/connection.js -------------------------------------------------------------------------------- /test/spec/core/difference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/core/difference.js -------------------------------------------------------------------------------- /test/spec/core/entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/core/entity.js -------------------------------------------------------------------------------- /test/spec/core/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/core/graph.js -------------------------------------------------------------------------------- /test/spec/core/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/core/history.js -------------------------------------------------------------------------------- /test/spec/core/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/core/node.js -------------------------------------------------------------------------------- /test/spec/core/relation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/core/relation.js -------------------------------------------------------------------------------- /test/spec/core/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/core/tree.js -------------------------------------------------------------------------------- /test/spec/core/way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/core/way.js -------------------------------------------------------------------------------- /test/spec/geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/geo.js -------------------------------------------------------------------------------- /test/spec/geo/extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/geo/extent.js -------------------------------------------------------------------------------- /test/spec/geo/multipolygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/geo/multipolygon.js -------------------------------------------------------------------------------- /test/spec/lib/d3.keybinding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/lib/d3.keybinding.js -------------------------------------------------------------------------------- /test/spec/lib/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/lib/locale.js -------------------------------------------------------------------------------- /test/spec/modes/add_point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/modes/add_point.js -------------------------------------------------------------------------------- /test/spec/presets/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/presets/category.js -------------------------------------------------------------------------------- /test/spec/presets/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/presets/collection.js -------------------------------------------------------------------------------- /test/spec/presets/preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/presets/preset.js -------------------------------------------------------------------------------- /test/spec/renderer/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/renderer/background.js -------------------------------------------------------------------------------- /test/spec/renderer/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/renderer/map.js -------------------------------------------------------------------------------- /test/spec/spec_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/spec_helpers.js -------------------------------------------------------------------------------- /test/spec/svg.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/spec/svg/areas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/svg/areas.js -------------------------------------------------------------------------------- /test/spec/svg/lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/svg/lines.js -------------------------------------------------------------------------------- /test/spec/svg/member_classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/svg/member_classes.js -------------------------------------------------------------------------------- /test/spec/svg/midpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/svg/midpoints.js -------------------------------------------------------------------------------- /test/spec/svg/points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/svg/points.js -------------------------------------------------------------------------------- /test/spec/svg/tag_classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/svg/tag_classes.js -------------------------------------------------------------------------------- /test/spec/svg/vertices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/svg/vertices.js -------------------------------------------------------------------------------- /test/spec/taginfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/taginfo.js -------------------------------------------------------------------------------- /test/spec/ui/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/ui/cmd.js -------------------------------------------------------------------------------- /test/spec/ui/confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/ui/confirm.js -------------------------------------------------------------------------------- /test/spec/ui/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/ui/flash.js -------------------------------------------------------------------------------- /test/spec/ui/geocoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/ui/geocoder.js -------------------------------------------------------------------------------- /test/spec/ui/inspector.js: -------------------------------------------------------------------------------- 1 | describe("iD.ui.Inspector", function () { 2 | }); 3 | -------------------------------------------------------------------------------- /test/spec/ui/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/ui/modal.js -------------------------------------------------------------------------------- /test/spec/ui/preset/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/ui/preset/access.js -------------------------------------------------------------------------------- /test/spec/ui/taglist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/ui/taglist.js -------------------------------------------------------------------------------- /test/spec/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfloorplan/ofp-editor/HEAD/test/spec/util.js --------------------------------------------------------------------------------