Changes between Version 4 and Version 5 of GoogleSummerCode2018


Ignore:
Timestamp:
Jan 19, 2018, 10:57:55 AM (6 years ago)
Author:
vrautenbach
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • GoogleSummerCode2018

    v4 v5  
    88
    99''Languages and APIs'': Python, JavaScript and JavaScript APIs such as, require.js, bootstrap and OL3.
     10
     11
     12''Test for potential students:''
     13Task 1:
     14Write a Python program to construct an array by repeating.
     15Sample array: [1, 2, 3, 4]
     16Expected Output:
     17Original array
     18[1, 2, 3, 4]
     19Repeating 2 times
     20[1 2 3 4 1 2 3 4]
     21Repeating 3 times
     22[1 2 3 4 1 2 3 4 1 2 3 4]
     23
     24
     25Task 2:
     26Create a basic web map using OpenLayers displaying json layer, also ensure that you bootstrap the page.