offline-editor-js/samples/appcache-features.html

221 lines
8.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
<title>Simple Map</title>
<link rel="stylesheet" href="http://js.arcgis.com/3.8/js/esri/css/esri.css">
<style>
html, body, #map {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
body {
background-color: #FFF;
overflow: hidden;
font-family: "Trebuchet MS";
}
.dj_ie .infowindow .window .top .right .user .content { position: relative; }
.dj_ie .simpleInfoWindow .content {position: relative;}
.popup-table{
font-size: 12px;
}
.popup-table-row{
height: 24px;
}
.popup-table-textarea{
height: 17px;
}
#button-div1{
position: relative;
background: #000000;
color: #ffffff;
width: 100%;
height: 50px;
}
#img-offline-indicator{
padding: 8px;
position: relative; float: right;
}
</style>
<script src="../vendor/offline/offline.min.js"></script>
<script>
Offline.options = {
checks: {
image: {
url: function() {
return 'http://esri.github.io/offline-editor-js/tiny-image.png?_=' + (Math.floor(Math.random() * 1000000000));
}
},
active: 'image'
}
}
var locationPath = location.pathname.replace(/\/[^/]+$/, "");
var dojoConfig = {
paths: {
edit: locationPath + "/../lib/edit",
vendor: locationPath + "/../vendor"
}
}
</script>
<script src="http://js.arcgis.com/3.8/"></script>
<script>
var map,busStopsFeatureLayer;
var imgOfflineIndicator,btnOnlineOffline;
var redPinPath = "../samples/images/red-pin.png";
var bluePinPath = "../samples/images/blue-pin.png"
require([
"esri/map",
"esri/layers/FeatureLayer",
"edit/offlineFeaturesManager",
"dojo/domReady!"],
function(Map,FeatureLayer,OfflineFeaturesManager) {
var offlineFeaturesManager = new OfflineFeaturesManager();
offlineFeaturesManager.on(offlineFeaturesManager.events.EDITS_ENQUEUED, updateStatus);
offlineFeaturesManager.on(offlineFeaturesManager.events.EDITS_SENT, updateStatus);
offlineFeaturesManager.on(offlineFeaturesManager.events.ALL_EDITS_SENT, updateStatus);
imgOfflineIndicator = document.getElementById("img-offline-indicator");
imgOfflineIndicator.offlineColor = "blue";
Offline.check();
Offline.on('up', goOnline );
Offline.on('down', goOffline );
map = new Map("map", {
basemap: "topo",
center: [-104.98,39.74], // long, lat
zoom: 10,
sliderStyle: "small"
});
busStopsFeatureLayer = new FeatureLayer("http://services.arcgis.com/IZtlGBUe4KTzLOl4/arcgis/rest/services/BPX_RTD_BusStops2/FeatureServer/0",{
mode: FeatureLayer.MODE_SNAPSHOT,
outFields: ["OBJECTID","BSID","ROUTES","STOPNAME"]
})
map.on("layers-add-result",initEditing);
map.addLayers([busStopsFeatureLayer]);
function initEditing(evt){
offlineFeaturesManager.extend(busStopsFeatureLayer);
map.infoWindow.on("hide", function() {
busStopsFeatureLayer.clearSelection();
});
btnOnlineOffline = document.getElementById("btn-online-offline");
// var layerInfos = [{
// 'featureLayer': busStopsFeatureLayer,
// 'showAttachments': false,
// 'isEditable': true,
// 'fieldInfos': [
// {'fieldName': 'OBJECTID', 'isEditable':false, 'label':'ID:'},
// {'fieldName': 'BSID', 'isEditable':false, 'label':'Bus stop ID:'},
// {'fieldName': 'ROUTES', 'isEditable':false,'label':'Routes:'},
// {'fieldName': 'STOPNAME', 'isEditable':true, 'label':'Stop name:'}
// ]
// }];
//
// var attInspector = new AttributeInspector({
// layerInfos:layerInfos
// }, domConstruct.create("div"));
//
// //add a save button next to the delete button
// var saveButton = new Button({ label: "Save", "class": "saveButton"});
// domConstruct.place(saveButton.domNode, attInspector.deleteBtn.domNode, "after");
//
// saveButton.on("click", function(){
// busStopsFeatureLayer.applyEdits(null, [updateFeature], null);
// });
//
// attInspector.on("attribute-change", function(evt) {
// //store the updates to apply when the save button is clicked
// updateFeature.attributes[evt.fieldName] = evt.fieldValue;
// });
//
// attInspector.on("next", function(evt) {
// updateFeature = evt.feature;
// console.log("Next " + updateFeature.attributes.objectid);
// });
//
// attInspector.on("delete", function(evt){
// evt.feature.getLayer().applyEdits(null,null,[updateFeature]);
// map.infoWindow.hide();
// });
busStopsFeatureLayer.on("click", function(evt) {
var feature = evt.graphic
map.infoWindow.setTitle(feature.attributes.STOPNAME);
map.infoWindow.setContent(
"<table class='popup-table'>" +
"<tr class='popup-table-row'><td>ID:</td><td> " + feature.attributes.OBJECTID + "</td></tr>" +
"<tr class='popup-table-row'><td>Routes:</td><td> " + feature.attributes.ROUTES + "</td></tr>" +
"<tr class='popup-table-row'><td>Stops:</td><td><textarea class='popup-table-textarea'> " + feature.attributes.STOPNAME + "</textarea></td></tr>" +
"<tr class='popup-table-row'><td><button>Save</button></td><td><button>Delete</button></td></tr>" +
"</table>"
)
map.infoWindow.show(evt.screenPoint,map.getInfoWindowAnchor(evt.screenPoint));
}.bind(this));
map.infoWindow.resize(350, 240);
}
function updateFeature(feature){
busStopsFeatureLayer.applyEdits(null,[feature],null);
}
function deleteFeature(feature){
busStopsFeatureLayer.applyEdits(null,null,[feature]);
}
function updateStatus(){
}
}
);
function goOnlineOffline(){
if(imgOfflineIndicator.offlineColor == "blue"){
btnOnlineOffline.innerHTML = "2. Go Online";
imgOfflineIndicator.src = redPinPath;
imgOfflineIndicator.offlineColor = "red";
goOffline()
}
else{
btnOnlineOffline.innerHTML = "2. Go Offline";
imgOfflineIndicator.src = bluePinPath;
imgOfflineIndicator.offlineColor = "blue";
goOnline();
}
}
function goOnline(){
busStopsFeatureLayer.goOnline();
}
function goOffline(){
busStopsFeatureLayer.goOffline();
}
</script>
</head>
<body>
<div id="button-div1">
<img id="img-offline-indicator" onclick="goOnlineOffline()" src="../samples/images/blue-pin.png"/>
</div>
<div id="map"></div>
</body>
</html>