getBaseUri

getBaseUri (uri, includeQuery ) String

给定一个URI,返回URI的基本路径。
Name Type Default Description
uri String 乌里。
includeQuery Boolean false 可选 是否在uri中包含查询字符串和片段
Returns:
Uri的基本路径。
Example:
// basePath will be "/Gallery/";
var basePath = Cesium.getBaseUri('/Gallery/simple.czml?value=true&example=false');

// basePath will be "/Gallery/?value=true&example=false";
var basePath = Cesium.getBaseUri('/Gallery/simple.czml?value=true&example=false', true);