[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2023-08-02。"],[[["URLs can only contain a specific set of ASCII characters and some reserved characters, requiring encoding of other characters."],["URL encoding involves replacing unsafe characters with a '%' followed by their two-digit hexadecimal UTF-8 representation."],["Characters like spaces, quotation marks, less than, greater than, hash, percent, and pipe often require URL encoding."],["Building URLs programmatically using platform libraries is recommended for automatic and proper encoding."],["Google Maps Platform web services and static web APIs have a URL character limit of 16384."]]],["URLs require encoding because they only accept a specific subset of ASCII characters. Special characters, like spaces and foreign language characters, must be encoded using percent encoding (e.g., `%20` for space) or plus signs in specific instances. Reserved characters, such as `=`, `?`, and `|`, also need encoding when used literally, not as control characters. It's best to utilize platform URL building libraries for automatic encoding, guaranteeing proper escaping, because it can be complex to do manually. It is also important to note that URLs are limited to 16384 characters for Google Maps Platform web services.\n"]]