Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
deyihu committed Oct 8, 2023
1 parent 2c72d09 commit 3557e82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/geometry/symbol/SymbolTextSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ describe('SymbolTextSpec', function () {
textNames.push(líneasNuevas(randomName));

var v = new maptalks.VectorLayer('v', { 'drawImmediate': true }).addTo(map);
textNames.forEach(textMame => {
textNames.forEach(textName => {
v.clear();
const lineRows = textMame.split('\n');
const lineRows = textName.split('\n');
var geometry = new maptalks.Marker(center.copy(), {
symbol: {
'textName': textMame,
'textName': textName,
"textFaceName": "楷体",
"textSize": { "stops": [[8, 14], [20, 32]] },
"textFill": "#000",
Expand Down

0 comments on commit 3557e82

Please sign in to comment.