因此,documentation并未向我说明是否只备份了备份描述符function initialize() {
// Create new base map to your div called "map".
// Map options removed since map zoomed according to your geojson file
var map = new google.maps.Map(document.getElementById("map"))
// Load yourgeojsonfile and zoom the map to its extends
map.data.loadGeoJson('yourgeojsonfile',null,function(){
var bounds = new google.maps.LatLngBounds();
map.data.forEach(function(feature){
processPoints(feature.getGeometry(),bounds.extend,bounds);
});
map.fitBounds(bounds);
});
}
// Function for getting the boundaries of geojson (one point area possibility removed)
function processPoints(geometry,callback,thisArg){
if(geometry instanceof google.maps.LatLng){
callback.call(thisArg,geometry);
}
else{
geometry.getArray().forEach(function(x){
processPoints(x,callback,thisArg);
});
}
}
中明确列出的项目。假设我添加以下内容。
xml
该数据库文件是否是唯一正在备份的项目?
答案 0 :(得分:1)
<include>
- 指定要备份的文件或文件夹。默认情况下,自动 备份包括几乎所有的app文件。如果你指定一个 如果元素,系统默认情况下不再包含任何文件 仅指定指定的文件。要包含多个文件,请使用多个<include>
元素。
因此,指定 include 后,将不再备份默认备份的文件。
是的,只有那个数据库文件将在那个规范中备份。